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 0bb47323101..0fbc24f08a2 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/custom.py +++ b/src/azure-cli/azure/cli/command_modules/backup/custom.py @@ -23,6 +23,7 @@ BackupResourceVaultConfig, BackupResourceVaultConfigResource, DiskExclusionProperties, ExtendedProperties from azure.cli.core.util import CLIError +from azure.core.exceptions import HttpResponseError from azure.cli.core.azclierror import RequiredArgumentMissingError, InvalidArgumentValueError from azure.cli.command_modules.backup._client_factory import ( vaults_cf, backup_protected_items_cf, protection_policies_cf, virtual_machines_cf, recovery_points_cf, @@ -162,14 +163,14 @@ def _force_delete_vault(cmd, vault_name, resource_group_name): # now delete the vault try: vault_client.delete(resource_group_name, vault_name) - except Exception as ex: + except HttpResponseError as ex: raise ex def delete_vault(cmd, client, vault_name, resource_group_name, force=False): try: client.delete(resource_group_name, vault_name) - except Exception as ex: # pylint: disable=broad-except + except HttpResponseError as ex: # pylint: disable=broad-except if 'existing resources within the vault' in ex.message and force: # pylint: disable=no-member _force_delete_vault(cmd, vault_name, resource_group_name) else: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py index fd8a2356ffb..110861d18cc 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/preparers.py @@ -72,11 +72,11 @@ def _cleanup(self, vault_name, resource_group): execute(self.cli_ctx, 'az backup protection disable --backup-management-type AzureIaasVM --workload-type VM -g {} -v {} -c {} -i {} --delete-backup-data true --yes' .format(resource_group, vault_name, container, item)) - from msrestazure.azure_exceptions import CloudError + from azure.core.exceptions import HttpResponseError try: execute(self.cli_ctx, 'az backup vault delete -n {} -g {} --yes'.format(vault_name, resource_group)) - except CloudError as ex: - if 'Recovery Services vault cannot be deleted as there are backup items in soft deleted state in the vault' not in str(ex): + except HttpResponseError as ex: + if "Operation returned an invalid status 'Bad Request'" not in str(ex): raise ex @@ -229,7 +229,7 @@ def _get_resource_group(self, **kwargs): try: return kwargs.get(self.resource_group_parameter_name) except KeyError: - template = 'To create an item, a resource group is required. Please add ' \ + template = 'To create a Policy, a resource group is required. Please add ' \ 'decorator @{} in front of this Policy preparer.' raise CliTestError(template.format(ResourceGroupPreparer.__name__, self.resource_group_parameter_name)) @@ -238,7 +238,7 @@ def _get_vault(self, **kwargs): try: return kwargs.get(self.vault_parameter_name) except KeyError: - template = 'To create an item, a vault is required. Please add ' \ + template = 'To create a Policy, a vault is required. Please add ' \ 'decorator @{} in front of this Policy preparer.' raise CliTestError(template.format(VaultPreparer.__name__, self.vault_parameter_name)) @@ -281,7 +281,7 @@ def _get_resource_group(self, **kwargs): try: return kwargs.get(self.resource_group_parameter_name) except KeyError: - template = 'To create an item, a resource group is required. Please add ' \ + template = 'To create an RP, a resource group is required. Please add ' \ 'decorator @{} in front of this RP preparer.' raise CliTestError(template.format(ResourceGroupPreparer.__name__, self.resource_group_parameter_name)) @@ -290,7 +290,7 @@ def _get_vault(self, **kwargs): try: return kwargs.get(self.vault_parameter_name) except KeyError: - template = 'To create an item, a vault is required. Please add ' \ + template = 'To create an RP, a vault is required. Please add ' \ 'decorator @{} in front of this RP preparer.' raise CliTestError(template.format(VaultPreparer.__name__, self.vault_parameter_name)) @@ -299,7 +299,7 @@ def _get_vm(self, **kwargs): try: return kwargs.get(self.vm_parameter_name) except KeyError: - template = 'To create an rp, a VM is required. Please add ' \ + template = 'To create an RP, a VM is required. Please add ' \ 'decorator @{} in front of this RP preparer.' raise CliTestError(template.format(ItemPreparer.__name__, self.vm_parameter_name)) @@ -345,7 +345,7 @@ def _get_resource_group(self, **kwargs): try: return kwargs.get(self.resource_group_parameter_name) except KeyError: - template = 'To create an item, a resource group is required. Please add ' \ + template = 'To create a Policy, a resource group is required. Please add ' \ 'decorator @{} in front of this Policy preparer.' raise CliTestError(template.format(ResourceGroupPreparer.__name__, self.resource_group_parameter_name)) @@ -354,7 +354,7 @@ def _get_vault(self, **kwargs): try: return kwargs.get(self.vault_parameter_name) except KeyError: - template = 'To create an item, a vault is required. Please add ' \ + template = 'To create a Policy, a vault is required. Please add ' \ 'decorator @{} in front of this Policy preparer.' raise CliTestError(template.format(VaultPreparer.__name__, self.vault_parameter_name)) @@ -409,8 +409,8 @@ def _get_resource_group(self, **kwargs): try: return kwargs.get(self.resource_group_parameter_name) except KeyError: - template = 'To create an item, a resource group is required. Please add ' \ - 'decorator @{} in front of this Policy preparer.' + template = 'To create a Fileshare, a resource group is required. Please add ' \ + 'decorator @{} in front of this Fileshare preparer.' raise CliTestError(template.format(ResourceGroupPreparer.__name__, self.resource_group_parameter_name)) @@ -424,8 +424,8 @@ def _get_storage_account(self, **kwargs): try: return kwargs.get(self.storage_account_parameter_name) except KeyError: - template = 'To create an item, a vault is required. Please add ' \ - 'decorator @StorageAccountPreparer in front of this Policy preparer.' + template = 'To create a Fileshare, a storage_account is required. Please add ' \ + 'decorator @StorageAccountPreparer in front of this Fileshare preparer.' raise CliTestError(template) @@ -468,7 +468,7 @@ def _get_resource_group(self, **kwargs): return kwargs.get(self.resource_group_parameter_name) except KeyError: template = 'To create an item, a resource group is required. Please add ' \ - 'decorator @{} in front of this Policy preparer.' + 'decorator @{} in front of this Item preparer.' raise CliTestError(template.format(ResourceGroupPreparer.__name__, self.resource_group_parameter_name)) @@ -477,7 +477,7 @@ def _get_vault(self, **kwargs): return kwargs.get(self.vault_parameter_name) except KeyError: template = 'To create an item, a vault is required. Please add ' \ - 'decorator @{} in front of this Policy preparer.' + 'decorator @{} in front of this Item preparer.' raise CliTestError(template.format(VaultPreparer.__name__, self.vault_parameter_name)) @@ -485,8 +485,8 @@ def _get_storage_account(self, **kwargs): try: return kwargs.get(self.storage_account_parameter_name) except KeyError: - template = 'To create an item, a vault is required. Please add ' \ - 'decorator @StorageAccountPreparer in front of this Policy preparer.' + template = 'To create an item, a storage_account is required. Please add ' \ + 'decorator @StorageAccountPreparer in front of this Item preparer.' raise CliTestError(template) def _get_file_share(self, **kwargs): @@ -494,7 +494,7 @@ def _get_file_share(self, **kwargs): return kwargs.get(self.afs_parameter_name) except KeyError: template = 'To create an item, a fileshare is required. Please add ' \ - 'decorator @FileSharePreparer in front of this Policy preparer.' + 'decorator @FileSharePreparer in front of this Item preparer.' raise CliTestError(template) def _get_policy(self, **kwargs): @@ -502,7 +502,7 @@ def _get_policy(self, **kwargs): return kwargs.get(self.policy_parameter_name) except KeyError: template = 'To create an item, a policy is required. Please add ' \ - 'decorator @AFSPolicyPreparer in front of this Policy preparer.' + 'decorator @AFSPolicyPreparer in front of this Item preparer.' raise CliTestError(template) @@ -545,8 +545,8 @@ def _get_resource_group(self, **kwargs): try: return kwargs.get(self.resource_group_parameter_name) except KeyError: - template = 'To create an item, a resource group is required. Please add ' \ - 'decorator @{} in front of this Policy preparer.' + template = 'To create an RP, a resource group is required. Please add ' \ + 'decorator @{} in front of this RP preparer.' raise CliTestError(template.format(ResourceGroupPreparer.__name__, self.resource_group_parameter_name)) @@ -554,8 +554,8 @@ def _get_vault(self, **kwargs): try: return kwargs.get(self.vault_parameter_name) except KeyError: - template = 'To create an item, a vault is required. Please add ' \ - 'decorator @{} in front of this Policy preparer.' + template = 'To create an RP, a vault is required. Please add ' \ + 'decorator @{} in front of this RP preparer.' raise CliTestError(template.format(VaultPreparer.__name__, self.vault_parameter_name)) @@ -563,16 +563,16 @@ def _get_storage_account(self, **kwargs): try: return kwargs.get(self.storage_account_parameter_name) except KeyError: - template = 'To create a RP, an item is required. Please add ' \ - 'decorator @AFSItemPreparer in front of this Policy preparer.' + template = 'To create an RP, a storage_account is required. Please add ' \ + 'decorator @AFSItemPreparer in front of this RP preparer.' raise CliTestError(template) def _get_file_share(self, **kwargs): try: return kwargs.get(self.afs_parameter_name) except KeyError: - template = 'To create an item, a fileshare is required. Please add ' \ - 'decorator @FileSharePreparer in front of this Policy preparer.' + template = 'To create an RP, a fileshare is required. Please add ' \ + 'decorator @FileSharePreparer in front of this RP preparer.' raise CliTestError(template) diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_container.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_container.yaml index 7cadabb3338..891dd9b10b0 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_container.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_container.yaml @@ -13,19 +13,16 @@ interactions: Content-Length: - '76' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --location User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-04-20T08%3A01%3A17.5127216Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T01%3A58%3A10.0254489Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -34,7 +31,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:16 GMT + - Thu, 20 May 2021 01:58:09 GMT expires: - '-1' pragma: @@ -66,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:01:18.2895674Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:01:18.2895674Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-05-20T01:58:11.1987575Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T01:58:11.1987575Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -80,7 +77,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:39 GMT + - Thu, 20 May 2021 01:58:32 GMT expires: - '-1' pragma: @@ -96,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 200 message: OK @@ -108,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 x-ms-date: - - Tue, 20 Apr 2021 08:01:40 GMT + - Thu, 20 May 2021 01:58:33 GMT x-ms-share-quota: - '1' x-ms-version: @@ -124,11 +121,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:40 GMT + - Thu, 20 May 2021 01:58:33 GMT etag: - - '"0x8D903D287E72046"' + - '"0x8D91B32C62D6714"' last-modified: - - Tue, 20 Apr 2021 08:01:40 GMT + - Thu, 20 May 2021 01:58:33 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -150,15 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -167,7 +164,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:41 GMT + - Thu, 20 May 2021 01:58:56 GMT expires: - '-1' pragma: @@ -183,7 +180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -192,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-04-20T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-05-20T11:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-04-20T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-05-20T11:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -212,15 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -229,7 +226,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:41 GMT + - Thu, 20 May 2021 01:59:28 GMT expires: - '-1' pragma: @@ -245,7 +242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -265,8 +262,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -282,7 +279,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:41 GMT + - Thu, 20 May 2021 02:00:11 GMT expires: - '-1' pragma: @@ -298,7 +295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -318,24 +315,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfbutzpdcc6;clitestuz6wedvgkxh4nsvaq","name":"StorageContainer;Storage;clitest.rgfbutzpdcc6;clitestuz6wedvgkxh4nsvaq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuz6wedvgkxh4nsvaq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfbutzpdcc6/providers/Microsoft.Storage/storageAccounts/clitestuz6wedvgkxh4nsvaq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: cache-control: - no-cache content-length: - - '11192' + - '13066' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:42 GMT + - Thu, 20 May 2021 02:00:11 GMT expires: - '-1' pragma: @@ -358,7 +355,8 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": + "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' headers: Accept: - application/json @@ -369,40 +367,46 @@ interactions: Connection: - keep-alive Content-Length: - - '0' + - '273' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/62652023-b047-4580-8e78-283d672d8c98?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:43 GMT + - Thu, 20 May 2021 02:00:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2020-10-01 pragma: - 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' + - '1194' x-powered-by: - ASP.NET status: @@ -422,28 +426,34 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:43 GMT + - Thu, 20 May 2021 02:00:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -469,28 +479,34 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:44 GMT + - Thu, 20 May 2021 02:00:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -516,28 +532,34 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:46 GMT + - Thu, 20 May 2021 02:00:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -563,28 +585,34 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:47 GMT + - Thu, 20 May 2021 02:01:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -610,39 +638,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2020-10-01 response: body: - string: '' + string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive + a response from ''Microsoft.RecoveryServices'' within the specified time period."}}' headers: cache-control: - no-cache + connection: + - close content-length: - - '0' + - '154' + content-type: + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:01:48 GMT + - Thu, 20 May 2021 02:02:02 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - service status: - code: 202 - message: Accepted + code: 504 + message: Gateway Timeout - request: body: null headers: @@ -657,39 +686,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/27d60889-d7d7-405c-959e-2c37bfeb7dcb?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' headers: cache-control: - no-cache content-length: - - '0' + - '790' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:49 GMT + - Thu, 20 May 2021 02:02:04 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -704,39 +739,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;4483f0b7427c0c3a64fcdb0ba4f56e6eef031c4263bd29cf5af19324bbd2e328","name":"azurefileshare;4483f0b7427c0c3a64fcdb0ba4f56e6eef031c4263bd29cf5af19324bbd2e328","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '1039' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:51 GMT + - Thu, 20 May 2021 02:02:04 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -751,41 +792,49 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '0' + - '740' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:53 GMT + - Thu, 20 May 2021 02:02:05 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -795,38 +844,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/62652023-b047-4580-8e78-283d672d8c98?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B4483f0b7427c0c3a64fcdb0ba4f56e6eef031c4263bd29cf5af19324bbd2e328?api-version=2020-10-01 response: body: string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;4483f0b7427c0c3a64fcdb0ba4f56e6eef031c4263bd29cf5af19324bbd2e328/operationsStatus/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 cache-control: - no-cache + content-length: + - '0' date: - - Tue, 20 Apr 2021 08:01:54 GMT + - Thu, 20 May 2021 02:02:05 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;4483f0b7427c0c3a64fcdb0ba4f56e6eef031c4263bd29cf5af19324bbd2e328/operationResults/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -841,24 +900,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgbgds5xhz5r;clitestjrtgryxcw2d4ewgcc","name":"StorageContainer;Storage;clitest.rgbgds5xhz5r;clitestjrtgryxcw2d4ewgcc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestjrtgryxcw2d4ewgcc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbgds5xhz5r/providers/Microsoft.Storage/storageAccounts/clitestjrtgryxcw2d4ewgcc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12746' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:55 GMT + - Thu, 20 May 2021 02:02:06 GMT expires: - '-1' pragma: @@ -874,15 +933,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' + body: null headers: Accept: - application/json @@ -892,52 +950,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:55 GMT + - Thu, 20 May 2021 02:02:08 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -952,45 +1006,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:56 GMT + - Thu, 20 May 2021 02:02:09 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '145' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1005,45 +1059,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:58 GMT + - Thu, 20 May 2021 02:02:10 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '144' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1058,45 +1112,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:59 GMT + - Thu, 20 May 2021 02:02:12 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '143' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1111,45 +1165,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:01 GMT + - Thu, 20 May 2021 02:02:13 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '142' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1164,45 +1218,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:02 GMT + - Thu, 20 May 2021 02:02:14 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1217,45 +1271,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:03 GMT + - Thu, 20 May 2021 02:02:15 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '140' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1270,45 +1324,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:04 GMT + - Thu, 20 May 2021 02:02:17 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '139' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1323,45 +1377,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:05 GMT + - Thu, 20 May 2021 02:02:18 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '138' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1376,45 +1430,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:07 GMT + - Thu, 20 May 2021 02:02:19 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '137' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1429,45 +1483,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:08 GMT + - Thu, 20 May 2021 02:02:20 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '136' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1482,45 +1536,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:09 GMT + - Thu, 20 May 2021 02:02:21 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '135' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1535,45 +1589,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:10 GMT + - Thu, 20 May 2021 02:02:23 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '134' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1588,45 +1642,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:11 GMT + - Thu, 20 May 2021 02:02:24 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '133' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1641,45 +1695,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:13 GMT + - Thu, 20 May 2021 02:02:25 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '132' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1694,45 +1748,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:14 GMT + - Thu, 20 May 2021 02:02:26 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '131' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1747,45 +1801,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:15 GMT + - Thu, 20 May 2021 02:02:28 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '130' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1800,45 +1854,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:16 GMT + - Thu, 20 May 2021 02:02:29 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '129' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1853,45 +1907,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:17 GMT + - Thu, 20 May 2021 02:02:30 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '128' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1906,24 +1960,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/cf5d82e2-10cd-4692-bfee-24d4c20d227d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '790' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:19 GMT + - Thu, 20 May 2021 02:02:31 GMT expires: - '-1' pragma: @@ -1939,7 +1993,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '127' x-powered-by: - ASP.NET status: @@ -1959,24 +2013,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '740' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:19 GMT + - Thu, 20 May 2021 02:02:33 GMT expires: - '-1' pragma: @@ -1992,7 +2046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '126' x-powered-by: - ASP.NET status: @@ -2012,24 +2066,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:19 GMT + - Thu, 20 May 2021 02:02:34 GMT expires: - '-1' pragma: @@ -2045,7 +2099,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '125' x-powered-by: - ASP.NET status: @@ -2062,46 +2116,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:19 GMT + - Thu, 20 May 2021 02:02:35 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2116,45 +2172,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:20 GMT + - Thu, 20 May 2021 02:02:37 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '123' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2169,45 +2225,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:21 GMT + - Thu, 20 May 2021 02:02:38 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '122' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2222,45 +2278,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:22 GMT + - Thu, 20 May 2021 02:02:40 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '121' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2275,45 +2331,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:24 GMT + - Thu, 20 May 2021 02:02:41 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '120' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2328,45 +2384,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:25 GMT + - Thu, 20 May 2021 02:02:42 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '119' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2381,37 +2437,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a85dad47-31c7-4d3c-af48-44301d47084d?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache + content-length: + - '188' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:02:26 GMT + - Thu, 20 May 2021 02:02:43 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '118' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -2426,24 +2490,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;238f661131c2ff2686c0af6c84ee5bf362d91c949446c3c409cc6807bf099c02","name":"azurefileshare;238f661131c2ff2686c0af6c84ee5bf362d91c949446c3c409cc6807bf099c02","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1039' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:27 GMT + - Thu, 20 May 2021 02:02:45 GMT expires: - '-1' pragma: @@ -2459,16 +2523,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '117' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", - "protectedItemType": "AzureFileShareProtectedItem"}}' + body: null headers: Accept: - application/json @@ -2478,48 +2540,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B238f661131c2ff2686c0af6c84ee5bf362d91c949446c3c409cc6807bf099c02?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;238f661131c2ff2686c0af6c84ee5bf362d91c949446c3c409cc6807bf099c02/operationsStatus/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:29 GMT + - Thu, 20 May 2021 02:02:46 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;238f661131c2ff2686c0af6c84ee5bf362d91c949446c3c409cc6807bf099c02/operationResults/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -2534,15 +2596,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"InProgress","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2551,7 +2613,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:29 GMT + - Thu, 20 May 2021 02:02:47 GMT expires: - '-1' pragma: @@ -2567,7 +2629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '115' x-powered-by: - ASP.NET status: @@ -2587,24 +2649,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c341c9d6-7b9c-4981-8a4d-94498dea7585?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"c341c9d6-7b9c-4981-8a4d-94498dea7585","name":"c341c9d6-7b9c-4981-8a4d-94498dea7585","status":"Succeeded","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"2021-05-20T02:02:06.2096873Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7d4eccdc-18cb-48bc-b156-d86a45777898"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:30 GMT + - Thu, 20 May 2021 02:02:48 GMT expires: - '-1' pragma: @@ -2620,7 +2682,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '114' x-powered-by: - ASP.NET status: @@ -2640,30 +2702,33 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7d4eccdc-18cb-48bc-b156-d86a45777898?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7d4eccdc-18cb-48bc-b156-d86a45777898","name":"7d4eccdc-18cb-48bc-b156-d86a45777898","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.2186008S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-20T02:02:06.2096873Z","endTime":"2021-05-20T02:02:48.4282881Z","activityId":"0305c19c-b90f-11eb-8046-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '188' + - '946' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:32 GMT + - Thu, 20 May 2021 02:03:24 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2673,7 +2738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '146' x-powered-by: - ASP.NET status: @@ -2687,36 +2752,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - storage account show-connection-string Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -n -g User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{"keys":[{"creationTime":"2021-05-20T02:03:25.4027743Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T02:03:25.4027743Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '188' + - '380' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:33 GMT + - Thu, 20 May 2021 02:03:47 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2726,12 +2790,46 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET + - '11997' status: code: 200 message: OK +- request: + body: null + headers: + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 + x-ms-date: + - Thu, 20 May 2021 02:03:47 GMT + x-ms-share-quota: + - '1' + x-ms-version: + - '2018-11-09' + method: PUT + uri: https://clitest000007.file.core.windows.net/clitest-item000008?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 20 May 2021 02:03:47 GMT + etag: + - '"0x8D91B3381C68195"' + last-modified: + - Thu, 20 May 2021 02:03:48 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2018-11-09' + status: + code: 201 + message: Created - request: body: null headers: @@ -2746,24 +2844,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '880' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:34 GMT + - Thu, 20 May 2021 02:03:48 GMT expires: - '-1' pragma: @@ -2779,7 +2877,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: @@ -2799,24 +2897,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgy52td2oju4;clitestgsizmt6ytgxxz3cvt","name":"StorageContainer;Storage;clitest.rgy52td2oju4;clitestgsizmt6ytgxxz3cvt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestgsizmt6ytgxxz3cvt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy52td2oju4/providers/Microsoft.Storage/storageAccounts/clitestgsizmt6ytgxxz3cvt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '12289' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:36 GMT + - Thu, 20 May 2021 02:03:48 GMT expires: - '-1' pragma: @@ -2832,7 +2930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -2849,48 +2947,46 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:02:37 GMT + - Thu, 20 May 2021 02:03:49 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2905,45 +3001,39 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:02:38 GMT + - Thu, 20 May 2021 02:03:50 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '149' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2958,45 +3048,428 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:02:40 GMT + - Thu, 20 May 2021 02:03:52 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '148' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 20 May 2021 02:03:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 20 May 2021 02:03:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 20 May 2021 02:03:55 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 20 May 2021 02:03:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 20 May 2021 02:04:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/e19f461b-fd1b-48d4-bdd3-bf94bef9c559?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Thu, 20 May 2021 02:04:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '142' + x-powered-by: + - ASP.NET + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000007","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwnfnpizbl2;clitestts4wdnvuga7ucdpzc","name":"StorageContainer;Storage;clitest.rgwnfnpizbl2;clitestts4wdnvuga7ucdpzc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestts4wdnvuga7ucdpzc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwnfnpizbl2/providers/Microsoft.Storage/storageAccounts/clitestts4wdnvuga7ucdpzc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgy52td2oju4;clitestgsizmt6ytgxxz3cvt","name":"StorageContainer;Storage;clitest.rgy52td2oju4;clitestgsizmt6ytgxxz3cvt","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestgsizmt6ytgxxz3cvt","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy52td2oju4/providers/Microsoft.Storage/storageAccounts/clitestgsizmt6ytgxxz3cvt"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '13843' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:04:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": + "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:04:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -3011,45 +3484,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:41 GMT + - Thu, 20 May 2021 02:04:03 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '149' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3064,45 +3537,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:43 GMT + - Thu, 20 May 2021 02:04:04 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '148' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3117,45 +3590,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:44 GMT + - Thu, 20 May 2021 02:04:05 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '147' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3170,45 +3643,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:45 GMT + - Thu, 20 May 2021 02:04:06 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '146' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3223,45 +3696,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:46 GMT + - Thu, 20 May 2021 02:04:09 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '145' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3276,45 +3749,98 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:48 GMT + - Thu, 20 May 2021 02:04:10 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '144' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:04:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -3329,45 +3855,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:49 GMT + - Thu, 20 May 2021 02:04:12 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '142' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3382,45 +3908,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:50 GMT + - Thu, 20 May 2021 02:04:14 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '141' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3435,45 +3961,98 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:51 GMT + - Thu, 20 May 2021 02:04:15 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:04:16 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '139' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3488,45 +4067,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:53 GMT + - Thu, 20 May 2021 02:04:18 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '138' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3541,45 +4120,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:54 GMT + - Thu, 20 May 2021 02:04:19 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '137' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3594,45 +4173,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:55 GMT + - Thu, 20 May 2021 02:04:20 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '136' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3647,45 +4226,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:56 GMT + - Thu, 20 May 2021 02:04:21 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '135' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3700,45 +4279,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:57 GMT + - Thu, 20 May 2021 02:04:23 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '134' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3753,45 +4332,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:59 GMT + - Thu, 20 May 2021 02:04:24 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '133' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3806,45 +4385,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:00 GMT + - Thu, 20 May 2021 02:04:26 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '132' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3859,45 +4438,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:01 GMT + - Thu, 20 May 2021 02:04:28 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '131' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3912,45 +4491,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:03 GMT + - Thu, 20 May 2021 02:04:29 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '130' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3965,45 +4544,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:04 GMT + - Thu, 20 May 2021 02:04:30 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '129' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4018,45 +4597,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:05 GMT + - Thu, 20 May 2021 02:04:31 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '128' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4071,45 +4650,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:06 GMT + - Thu, 20 May 2021 02:04:33 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '127' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4124,45 +4703,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:08 GMT + - Thu, 20 May 2021 02:04:34 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '126' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4177,45 +4756,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:09 GMT + - Thu, 20 May 2021 02:04:35 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '125' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4230,45 +4809,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"InProgress","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:10 GMT + - Thu, 20 May 2021 02:04:36 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '124' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4283,45 +4862,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78aed689-0bdb-4ea9-87d2-95f15202eeae?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"78aed689-0bdb-4ea9-87d2-95f15202eeae","name":"78aed689-0bdb-4ea9-87d2-95f15202eeae","status":"Succeeded","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"2021-04-20T08:02:28.8608892Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"80e5b538-d429-4c88-ab6e-da8a03070cce"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '304' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:11 GMT + - Thu, 20 May 2021 02:04:38 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '123' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4336,48 +4915,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80e5b538-d429-4c88-ab6e-da8a03070cce?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/80e5b538-d429-4c88-ab6e-da8a03070cce","name":"80e5b538-d429-4c88-ab6e-da8a03070cce","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.9182807S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-04-20T08:02:28.8608892Z","endTime":"2021-04-20T08:03:11.7791699Z","activityId":"a48bfc1e-a1ae-11eb-9c50-2cf05d45d149"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '946' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:12 GMT + - Thu, 20 May 2021 02:04:39 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '122' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4386,84 +4962,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage account show-connection-string + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g + - -g -v --azure-file-share --storage-account -p User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007/listKeys?api-version=2021-04-01&$expand=kerb + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:03:13.7599489Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:03:13.7599489Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '380' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:35 GMT + - Thu, 20 May 2021 02:04:40 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' - status: - code: 200 - message: OK -- request: - body: null - headers: - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 - x-ms-date: - - Tue, 20 Apr 2021 08:03:35 GMT - x-ms-share-quota: - - '1' - x-ms-version: - - '2018-11-09' - method: PUT - uri: https://clitest000007.file.core.windows.net/clitest-item000008?restype=share - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Tue, 20 Apr 2021 08:03:35 GMT - etag: - - '"0x8D903D2CCDF58CC"' - last-modified: - - Tue, 20 Apr 2021 08:03:36 GMT - server: - - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2018-11-09' + - '121' + x-powered-by: + - ASP.NET status: - code: 201 - message: Created + code: 202 + message: Accepted - request: body: null headers: @@ -4478,45 +5021,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '880' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:36 GMT + - Thu, 20 May 2021 02:04:42 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '120' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4531,45 +5074,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '11192' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:36 GMT + - Thu, 20 May 2021 02:04:43 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '119' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4581,41 +5124,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:37 GMT + - Thu, 20 May 2021 02:04:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' x-powered-by: - ASP.NET status: @@ -4635,34 +5180,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:38 GMT + - Thu, 20 May 2021 02:04:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '117' x-powered-by: - ASP.NET status: @@ -4682,34 +5233,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:39 GMT + - Thu, 20 May 2021 02:04:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '116' x-powered-by: - ASP.NET status: @@ -4729,34 +5286,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:41 GMT + - Thu, 20 May 2021 02:04:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '115' x-powered-by: - ASP.NET status: @@ -4776,34 +5339,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:43 GMT + - Thu, 20 May 2021 02:04:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '114' x-powered-by: - ASP.NET status: @@ -4823,34 +5392,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:45 GMT + - Thu, 20 May 2021 02:04:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '113' x-powered-by: - ASP.NET status: @@ -4870,34 +5445,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:46 GMT + - Thu, 20 May 2021 02:04:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '112' x-powered-by: - ASP.NET status: @@ -4917,34 +5498,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:47 GMT + - Thu, 20 May 2021 02:04:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '111' x-powered-by: - ASP.NET status: @@ -4964,35 +5551,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/f06f2d5f-972e-486c-b6cf-44e3aa16dd31?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:48 GMT + - Thu, 20 May 2021 02:04:54 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '110' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -5007,48 +5604,47 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg3dqrwrwi72;clitesteaiyeeum7o2qujpo6","name":"StorageContainer;Storage;clitest.rg3dqrwrwi72;clitesteaiyeeum7o2qujpo6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteaiyeeum7o2qujpo6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3dqrwrwi72/providers/Microsoft.Storage/storageAccounts/clitesteaiyeeum7o2qujpo6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000007","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqazbuvbahs;clitestcstgav66tjtgvozin","name":"StorageContainer;Storage;clitest.rgqazbuvbahs;clitestcstgav66tjtgvozin","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcstgav66tjtgvozin","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqazbuvbahs/providers/Microsoft.Storage/storageAccounts/clitestcstgav66tjtgvozin"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '13523' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:49 GMT + - Thu, 20 May 2021 02:04:55 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '109' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007"}}' + body: null headers: Accept: - application/json @@ -5058,25 +5654,21 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5084,11 +5676,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:49 GMT + - Thu, 20 May 2021 02:04:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: @@ -5097,8 +5689,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' x-powered-by: - ASP.NET status: @@ -5118,18 +5710,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5137,11 +5729,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:50 GMT + - Thu, 20 May 2021 02:04:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: @@ -5151,7 +5743,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '107' x-powered-by: - ASP.NET status: @@ -5171,18 +5763,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5190,11 +5782,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:52 GMT + - Thu, 20 May 2021 02:04:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: @@ -5204,7 +5796,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '106' x-powered-by: - ASP.NET status: @@ -5224,18 +5816,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5243,11 +5835,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:53 GMT + - Thu, 20 May 2021 02:05:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: @@ -5257,7 +5849,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '105' x-powered-by: - ASP.NET status: @@ -5277,18 +5869,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5296,11 +5888,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:54 GMT + - Thu, 20 May 2021 02:05:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: @@ -5310,7 +5902,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '104' x-powered-by: - ASP.NET status: @@ -5330,18 +5922,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5349,11 +5941,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:55 GMT + - Thu, 20 May 2021 02:05:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: @@ -5363,7 +5955,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '103' x-powered-by: - ASP.NET status: @@ -5383,18 +5975,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5402,11 +5994,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:56 GMT + - Thu, 20 May 2021 02:05:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: @@ -5416,7 +6008,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '102' x-powered-by: - ASP.NET status: @@ -5436,18 +6028,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5455,11 +6047,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:58 GMT + - Thu, 20 May 2021 02:05:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: @@ -5469,7 +6061,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '101' x-powered-by: - ASP.NET status: @@ -5489,18 +6081,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5508,11 +6100,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:59 GMT + - Thu, 20 May 2021 02:05:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: @@ -5522,7 +6114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '100' x-powered-by: - ASP.NET status: @@ -5542,18 +6134,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5561,11 +6153,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:00 GMT + - Thu, 20 May 2021 02:05:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: @@ -5575,7 +6167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '99' x-powered-by: - ASP.NET status: @@ -5595,45 +6187,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/7c526912-da1c-42d7-9fa5-913b15d33fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":0,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:01 GMT + - Thu, 20 May 2021 02:05:09 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '98' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5648,24 +6240,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/b56d9596-9d72-49c8-accd-042f91f2ca5d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":0,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' headers: cache-control: - no-cache content-length: - - '740' + - '790' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:01 GMT + - Thu, 20 May 2021 02:05:10 GMT expires: - '-1' pragma: @@ -5681,7 +6273,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '97' x-powered-by: - ASP.NET status: @@ -5701,8 +6293,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -5718,7 +6310,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:02 GMT + - Thu, 20 May 2021 02:05:11 GMT expires: - '-1' pragma: @@ -5756,8 +6348,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: POST @@ -5767,17 +6359,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:04:03 GMT + - Thu, 20 May 2021 02:05:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -5805,18 +6397,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5824,11 +6416,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:03 GMT + - Thu, 20 May 2021 02:05:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2020-10-01 pragma: - no-cache server: @@ -5838,7 +6430,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '149' x-powered-by: - ASP.NET status: @@ -5858,18 +6450,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5877,11 +6469,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:04 GMT + - Thu, 20 May 2021 02:05:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2020-10-01 pragma: - no-cache server: @@ -5891,7 +6483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '148' x-powered-by: - ASP.NET status: @@ -5911,18 +6503,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5930,11 +6522,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:06 GMT + - Thu, 20 May 2021 02:05:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2020-10-01 pragma: - no-cache server: @@ -5944,7 +6536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '147' x-powered-by: - ASP.NET status: @@ -5964,45 +6556,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/a1ab178f-ca79-422a-a750-99e8618e740b?api-version=2020-10-01 response: body: - string: '{}' + string: '' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2019-05-13-preview cache-control: - no-cache - content-length: - - '2' content-type: - - application/json + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:04:07 GMT + - Thu, 20 May 2021 02:05:20 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '146' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -6017,37 +6601,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/e811a4e0-5ad2-49bb-bc5e-ae3972ed3fe0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000007/protectableItems/azurefileshare;37c9ffd43584e9d23a1b737eeb0919107f2ff4a20027888dbf3ce70f1e5c8cf2","name":"azurefileshare;37c9ffd43584e9d23a1b737eeb0919107f2ff4a20027888dbf3ce70f1e5c8cf2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","parentContainerFriendlyName":"clitest000007","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000008","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache + content-length: + - '1039' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:04:09 GMT + - Thu, 20 May 2021 02: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-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '149' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -6062,24 +6654,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000007/protectableItems/azurefileshare;8bee516acd268e3d7ddad68430248ff45774a57253efcc01421ffb27e09a00cc","name":"azurefileshare;8bee516acd268e3d7ddad68430248ff45774a57253efcc01421ffb27e09a00cc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","parentContainerFriendlyName":"clitest000007","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000008","protectionState":"NotProtected"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache content-length: - - '1039' + - '740' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:10 GMT + - Thu, 20 May 2021 02:05:25 GMT expires: - '-1' pragma: @@ -6095,7 +6687,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -6121,28 +6713,28 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000007/protectedItems/azurefileshare%3B8bee516acd268e3d7ddad68430248ff45774a57253efcc01421ffb27e09a00cc?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000007/protectedItems/azurefileshare%3B37c9ffd43584e9d23a1b737eeb0919107f2ff4a20027888dbf3ce70f1e5c8cf2?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000007/protectedItems/azurefileshare;8bee516acd268e3d7ddad68430248ff45774a57253efcc01421ffb27e09a00cc/operationsStatus/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000007/protectedItems/azurefileshare;37c9ffd43584e9d23a1b737eeb0919107f2ff4a20027888dbf3ce70f1e5c8cf2/operationsStatus/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:04:10 GMT + - Thu, 20 May 2021 02:05:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000007/protectedItems/azurefileshare;8bee516acd268e3d7ddad68430248ff45774a57253efcc01421ffb27e09a00cc/operationResults/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000007/protectedItems/azurefileshare;37c9ffd43584e9d23a1b737eeb0919107f2ff4a20027888dbf3ce70f1e5c8cf2/operationResults/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -6150,7 +6742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -6170,24 +6762,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:12 GMT + - Thu, 20 May 2021 02:05:26 GMT expires: - '-1' pragma: @@ -6203,7 +6795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -6223,24 +6815,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:13 GMT + - Thu, 20 May 2021 02:05:27 GMT expires: - '-1' pragma: @@ -6256,7 +6848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -6276,24 +6868,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:14 GMT + - Thu, 20 May 2021 02:05:28 GMT expires: - '-1' pragma: @@ -6309,7 +6901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '145' x-powered-by: - ASP.NET status: @@ -6329,24 +6921,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:16 GMT + - Thu, 20 May 2021 02:05:29 GMT expires: - '-1' pragma: @@ -6362,7 +6954,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '144' x-powered-by: - ASP.NET status: @@ -6382,24 +6974,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:17 GMT + - Thu, 20 May 2021 02:05:31 GMT expires: - '-1' pragma: @@ -6415,7 +7007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '143' x-powered-by: - ASP.NET status: @@ -6435,24 +7027,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:18 GMT + - Thu, 20 May 2021 02:05:32 GMT expires: - '-1' pragma: @@ -6468,7 +7060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '142' x-powered-by: - ASP.NET status: @@ -6488,24 +7080,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:19 GMT + - Thu, 20 May 2021 02:05:33 GMT expires: - '-1' pragma: @@ -6521,7 +7113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '141' x-powered-by: - ASP.NET status: @@ -6541,24 +7133,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:20 GMT + - Thu, 20 May 2021 02:05:34 GMT expires: - '-1' pragma: @@ -6574,7 +7166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '140' x-powered-by: - ASP.NET status: @@ -6594,24 +7186,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:22 GMT + - Thu, 20 May 2021 02:05:35 GMT expires: - '-1' pragma: @@ -6627,7 +7219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '139' x-powered-by: - ASP.NET status: @@ -6647,24 +7239,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:25 GMT + - Thu, 20 May 2021 02:05:38 GMT expires: - '-1' pragma: @@ -6680,7 +7272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '138' x-powered-by: - ASP.NET status: @@ -6700,24 +7292,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:26 GMT + - Thu, 20 May 2021 02:05:39 GMT expires: - '-1' pragma: @@ -6733,7 +7325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '137' x-powered-by: - ASP.NET status: @@ -6753,24 +7345,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:27 GMT + - Thu, 20 May 2021 02:05:40 GMT expires: - '-1' pragma: @@ -6786,7 +7378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '136' x-powered-by: - ASP.NET status: @@ -6806,24 +7398,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:29 GMT + - Thu, 20 May 2021 02:05:41 GMT expires: - '-1' pragma: @@ -6839,7 +7431,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '135' x-powered-by: - ASP.NET status: @@ -6859,24 +7451,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:30 GMT + - Thu, 20 May 2021 02:05:43 GMT expires: - '-1' pragma: @@ -6892,7 +7484,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '134' x-powered-by: - ASP.NET status: @@ -6912,24 +7504,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:31 GMT + - Thu, 20 May 2021 02:05:44 GMT expires: - '-1' pragma: @@ -6945,7 +7537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '133' x-powered-by: - ASP.NET status: @@ -6965,24 +7557,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:32 GMT + - Thu, 20 May 2021 02:05:45 GMT expires: - '-1' pragma: @@ -6998,7 +7590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '132' x-powered-by: - ASP.NET status: @@ -7018,24 +7610,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:34 GMT + - Thu, 20 May 2021 02:05:46 GMT expires: - '-1' pragma: @@ -7051,7 +7643,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '131' x-powered-by: - ASP.NET status: @@ -7071,24 +7663,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:35 GMT + - Thu, 20 May 2021 02:05:47 GMT expires: - '-1' pragma: @@ -7104,7 +7696,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '130' x-powered-by: - ASP.NET status: @@ -7124,24 +7716,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:36 GMT + - Thu, 20 May 2021 02:05:49 GMT expires: - '-1' pragma: @@ -7157,7 +7749,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '129' x-powered-by: - ASP.NET status: @@ -7177,24 +7769,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:37 GMT + - Thu, 20 May 2021 02:05:50 GMT expires: - '-1' pragma: @@ -7210,7 +7802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '128' x-powered-by: - ASP.NET status: @@ -7230,24 +7822,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:39 GMT + - Thu, 20 May 2021 02:05:51 GMT expires: - '-1' pragma: @@ -7263,7 +7855,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '127' x-powered-by: - ASP.NET status: @@ -7283,24 +7875,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:40 GMT + - Thu, 20 May 2021 02:05:52 GMT expires: - '-1' pragma: @@ -7316,7 +7908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '126' x-powered-by: - ASP.NET status: @@ -7336,24 +7928,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:41 GMT + - Thu, 20 May 2021 02:05:54 GMT expires: - '-1' pragma: @@ -7369,7 +7961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '125' x-powered-by: - ASP.NET status: @@ -7389,24 +7981,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:42 GMT + - Thu, 20 May 2021 02:05:55 GMT expires: - '-1' pragma: @@ -7422,7 +8014,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '124' x-powered-by: - ASP.NET status: @@ -7442,24 +8034,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:43 GMT + - Thu, 20 May 2021 02:05:56 GMT expires: - '-1' pragma: @@ -7475,7 +8067,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '123' x-powered-by: - ASP.NET status: @@ -7495,24 +8087,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:45 GMT + - Thu, 20 May 2021 02:05:57 GMT expires: - '-1' pragma: @@ -7528,7 +8120,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '122' x-powered-by: - ASP.NET status: @@ -7548,24 +8140,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:46 GMT + - Thu, 20 May 2021 02:05:59 GMT expires: - '-1' pragma: @@ -7581,7 +8173,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '121' x-powered-by: - ASP.NET status: @@ -7601,24 +8193,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:47 GMT + - Thu, 20 May 2021 02:06:00 GMT expires: - '-1' pragma: @@ -7634,7 +8226,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '120' x-powered-by: - ASP.NET status: @@ -7654,24 +8246,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:48 GMT + - Thu, 20 May 2021 02:06:01 GMT expires: - '-1' pragma: @@ -7687,7 +8279,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '119' x-powered-by: - ASP.NET status: @@ -7707,24 +8299,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:50 GMT + - Thu, 20 May 2021 02:06:02 GMT expires: - '-1' pragma: @@ -7740,7 +8332,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '118' x-powered-by: - ASP.NET status: @@ -7760,24 +8352,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:51 GMT + - Thu, 20 May 2021 02:06:03 GMT expires: - '-1' pragma: @@ -7793,7 +8385,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '117' x-powered-by: - ASP.NET status: @@ -7813,24 +8405,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:52 GMT + - Thu, 20 May 2021 02:06:05 GMT expires: - '-1' pragma: @@ -7846,7 +8438,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '116' x-powered-by: - ASP.NET status: @@ -7866,24 +8458,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"InProgress","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:53 GMT + - Thu, 20 May 2021 02:06:06 GMT expires: - '-1' pragma: @@ -7899,7 +8491,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '115' x-powered-by: - ASP.NET status: @@ -7919,24 +8511,77 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f66d3e73-89b0-4651-a47c-f7eda3c6f215?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 response: body: - string: '{"id":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","name":"f66d3e73-89b0-4651-a47c-f7eda3c6f215","status":"Succeeded","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"2021-04-20T08:04:11.4044827Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"eb1f52b6-84a3-4056-850b-48e629d6b363"}}' + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"InProgress","startTime":"2021-05-20T02:05:26.368775Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' + content-type: + - application/json + date: + - Thu, 20 May 2021 02: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-ms-ratelimit-remaining-subscription-resource-requests: + - '114' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2c0392e5-e206-483b-84a6-b43c67c96359?api-version=2020-10-01 + response: + body: + string: '{"id":"2c0392e5-e206-483b-84a6-b43c67c96359","name":"2c0392e5-e206-483b-84a6-b43c67c96359","status":"Succeeded","startTime":"2021-05-20T02:05:26.368775Z","endTime":"2021-05-20T02:05:26.368775Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"61524d9c-ec26-42fa-80bf-0055e751382c"}}' + headers: + cache-control: + - no-cache + content-length: + - '302' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:54 GMT + - Thu, 20 May 2021 02:06:09 GMT expires: - '-1' pragma: @@ -7952,7 +8597,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '113' x-powered-by: - ASP.NET status: @@ -7972,26 +8617,26 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/eb1f52b6-84a3-4056-850b-48e629d6b363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61524d9c-ec26-42fa-80bf-0055e751382c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/eb1f52b6-84a3-4056-850b-48e629d6b363","name":"eb1f52b6-84a3-4056-850b-48e629d6b363","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.6934116S","storageAccountName":"clitest000007","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/61524d9c-ec26-42fa-80bf-0055e751382c","name":"61524d9c-ec26-42fa-80bf-0055e751382c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.3242129S","storageAccountName":"clitest000007","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File Share Name":"clitest-item000008","Storage Account Name":"clitest000007","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000008","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-04-20T08:04:11.4044827Z","endTime":"2021-04-20T08:04:54.0978943Z","activityId":"e8ae634a-a1ae-11eb-99bd-2cf05d45d149"}}' + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000008","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-20T02:05:26.368775Z","endTime":"2021-05-20T02:06:08.6929879Z","activityId":"9d975f5d-b90f-11eb-a97b-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '946' + - '945' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:55 GMT + - Thu, 20 May 2021 02:06:09 GMT expires: - '-1' pragma: @@ -8008,7 +8653,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -8028,8 +8673,8 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -8045,7 +8690,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:56 GMT + - Thu, 20 May 2021 02:06:10 GMT expires: - '-1' pragma: @@ -8061,7 +8706,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -8081,8 +8726,8 @@ interactions: ParameterSetName: - -n -v -g User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -8098,7 +8743,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:57 GMT + - Thu, 20 May 2021 02:06:10 GMT expires: - '-1' pragma: @@ -8134,15 +8779,15 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":1,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007","name":"StorageContainer;Storage;clitest.rg000001;clitest000007","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000007","protectedItemCount":1,"friendlyName":"clitest000007","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache @@ -8151,7 +8796,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:57 GMT + - Thu, 20 May 2021 02:06:11 GMT expires: - '-1' pragma: @@ -8167,7 +8812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -8187,15 +8832,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000007/protectedItems/AzureFileShare;8bee516acd268e3d7ddad68430248ff45774a57253efcc01421ffb27e09a00cc","name":"AzureFileShare;8bee516acd268e3d7ddad68430248ff45774a57253efcc01421ffb27e09a00cc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000008","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000007","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000007","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;238f661131c2ff2686c0af6c84ee5bf362d91c949446c3c409cc6807bf099c02","name":"AzureFileShare;238f661131c2ff2686c0af6c84ee5bf362d91c949446c3c409cc6807bf099c02","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;4483f0b7427c0c3a64fcdb0ba4f56e6eef031c4263bd29cf5af19324bbd2e328","name":"AzureFileShare;4483f0b7427c0c3a64fcdb0ba4f56e6eef031c4263bd29cf5af19324bbd2e328","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000007/protectedItems/AzureFileShare;37c9ffd43584e9d23a1b737eeb0919107f2ff4a20027888dbf3ce70f1e5c8cf2","name":"AzureFileShare;37c9ffd43584e9d23a1b737eeb0919107f2ff4a20027888dbf3ce70f1e5c8cf2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000008","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000007","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000007","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -8204,7 +8849,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:57 GMT + - Thu, 20 May 2021 02:06:12 GMT expires: - '-1' pragma: @@ -8220,7 +8865,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '145' x-powered-by: - ASP.NET status: @@ -8242,28 +8887,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B238f661131c2ff2686c0af6c84ee5bf362d91c949446c3c409cc6807bf099c02?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B4483f0b7427c0c3a64fcdb0ba4f56e6eef031c4263bd29cf5af19324bbd2e328?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:04:58 GMT + - Thu, 20 May 2021 02:06:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -8271,7 +8916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' x-powered-by: - ASP.NET status: @@ -8291,15 +8936,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8308,7 +8953,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:58 GMT + - Thu, 20 May 2021 02:06:13 GMT expires: - '-1' pragma: @@ -8324,7 +8969,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '147' x-powered-by: - ASP.NET status: @@ -8344,15 +8989,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8361,7 +9006,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:00 GMT + - Thu, 20 May 2021 02:06:14 GMT expires: - '-1' pragma: @@ -8377,7 +9022,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '146' x-powered-by: - ASP.NET status: @@ -8397,15 +9042,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8414,7 +9059,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:01 GMT + - Thu, 20 May 2021 02:06:16 GMT expires: - '-1' pragma: @@ -8430,7 +9075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '145' x-powered-by: - ASP.NET status: @@ -8450,15 +9095,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8467,7 +9112,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:02 GMT + - Thu, 20 May 2021 02:06:17 GMT expires: - '-1' pragma: @@ -8483,7 +9128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '144' x-powered-by: - ASP.NET status: @@ -8503,15 +9148,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8520,7 +9165,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:03 GMT + - Thu, 20 May 2021 02:06:18 GMT expires: - '-1' pragma: @@ -8536,7 +9181,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '143' x-powered-by: - ASP.NET status: @@ -8556,15 +9201,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8573,7 +9218,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:05 GMT + - Thu, 20 May 2021 02:06:20 GMT expires: - '-1' pragma: @@ -8589,7 +9234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '142' x-powered-by: - ASP.NET status: @@ -8609,15 +9254,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8626,7 +9271,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:06 GMT + - Thu, 20 May 2021 02:06:21 GMT expires: - '-1' pragma: @@ -8642,7 +9287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '141' x-powered-by: - ASP.NET status: @@ -8662,15 +9307,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8679,7 +9324,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:07 GMT + - Thu, 20 May 2021 02:06:22 GMT expires: - '-1' pragma: @@ -8695,7 +9340,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '140' x-powered-by: - ASP.NET status: @@ -8715,15 +9360,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8732,7 +9377,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:08 GMT + - Thu, 20 May 2021 02:06:23 GMT expires: - '-1' pragma: @@ -8748,7 +9393,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '139' x-powered-by: - ASP.NET status: @@ -8768,15 +9413,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8785,7 +9430,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:09 GMT + - Thu, 20 May 2021 02:06:24 GMT expires: - '-1' pragma: @@ -8801,7 +9446,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '138' x-powered-by: - ASP.NET status: @@ -8821,15 +9466,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8838,7 +9483,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:11 GMT + - Thu, 20 May 2021 02:06:26 GMT expires: - '-1' pragma: @@ -8854,7 +9499,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '137' x-powered-by: - ASP.NET status: @@ -8874,15 +9519,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8891,7 +9536,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:12 GMT + - Thu, 20 May 2021 02:06:27 GMT expires: - '-1' pragma: @@ -8907,7 +9552,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '136' x-powered-by: - ASP.NET status: @@ -8927,15 +9572,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8944,7 +9589,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:13 GMT + - Thu, 20 May 2021 02:06:28 GMT expires: - '-1' pragma: @@ -8960,7 +9605,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '135' x-powered-by: - ASP.NET status: @@ -8980,15 +9625,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8997,7 +9642,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:14 GMT + - Thu, 20 May 2021 02:06:29 GMT expires: - '-1' pragma: @@ -9013,7 +9658,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '134' x-powered-by: - ASP.NET status: @@ -9033,15 +9678,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9050,7 +9695,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:15 GMT + - Thu, 20 May 2021 02:06:30 GMT expires: - '-1' pragma: @@ -9066,7 +9711,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '133' x-powered-by: - ASP.NET status: @@ -9086,15 +9731,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9103,7 +9748,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:17 GMT + - Thu, 20 May 2021 02:06:32 GMT expires: - '-1' pragma: @@ -9119,7 +9764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '132' x-powered-by: - ASP.NET status: @@ -9139,15 +9784,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"InProgress","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"InProgress","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9156,7 +9801,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:18 GMT + - Thu, 20 May 2021 02:06:33 GMT expires: - '-1' pragma: @@ -9172,7 +9817,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '131' x-powered-by: - ASP.NET status: @@ -9192,15 +9837,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12d5411c-4476-450e-a98f-43fdb6756466?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1750a6ef-4b33-463a-89d6-12f3e4480626?api-version=2020-10-01 response: body: - string: '{"id":"12d5411c-4476-450e-a98f-43fdb6756466","name":"12d5411c-4476-450e-a98f-43fdb6756466","status":"Succeeded","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"2021-04-20T08:04:58.6763188Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1104a339-7db5-45cc-8eff-3c1e5a9646a8"}}' + string: '{"id":"1750a6ef-4b33-463a-89d6-12f3e4480626","name":"1750a6ef-4b33-463a-89d6-12f3e4480626","status":"Succeeded","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"2021-05-20T02:06:13.1801284Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"33e8f995-1c52-4fc0-b32e-2d72764be9bd"}}' headers: cache-control: - no-cache @@ -9209,7 +9854,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:19 GMT + - Thu, 20 May 2021 02:06:34 GMT expires: - '-1' pragma: @@ -9225,7 +9870,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '130' x-powered-by: - ASP.NET status: @@ -9245,16 +9890,16 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1104a339-7db5-45cc-8eff-3c1e5a9646a8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/33e8f995-1c52-4fc0-b32e-2d72764be9bd?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1104a339-7db5-45cc-8eff-3c1e5a9646a8","name":"1104a339-7db5-45cc-8eff-3c1e5a9646a8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.0223206S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-04-20T08:04:58.6763188Z","endTime":"2021-04-20T08:05:19.6986394Z","activityId":"1907980a-a1af-11eb-b699-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/33e8f995-1c52-4fc0-b32e-2d72764be9bd","name":"33e8f995-1c52-4fc0-b32e-2d72764be9bd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.2998081S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-20T02:06:13.1801284Z","endTime":"2021-05-20T02:06:34.4799365Z","activityId":"f319ee8e-b90f-11eb-b0f8-b07b250bf939"}}' headers: cache-control: - no-cache @@ -9263,7 +9908,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:20 GMT + - Thu, 20 May 2021 02:06:35 GMT expires: - '-1' pragma: @@ -9280,7 +9925,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -9300,15 +9945,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000007/protectedItems/AzureFileShare;8bee516acd268e3d7ddad68430248ff45774a57253efcc01421ffb27e09a00cc","name":"AzureFileShare;8bee516acd268e3d7ddad68430248ff45774a57253efcc01421ffb27e09a00cc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000008","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000007","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000007","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000007/protectedItems/AzureFileShare;37c9ffd43584e9d23a1b737eeb0919107f2ff4a20027888dbf3ce70f1e5c8cf2","name":"AzureFileShare;37c9ffd43584e9d23a1b737eeb0919107f2ff4a20027888dbf3ce70f1e5c8cf2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000008","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000007","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000007","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -9317,7 +9962,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:21 GMT + - Thu, 20 May 2021 02:06:35 GMT expires: - '-1' pragma: @@ -9333,7 +9978,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '147' x-powered-by: - ASP.NET status: @@ -9355,28 +10000,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000007/protectedItems/AzureFileShare%3B8bee516acd268e3d7ddad68430248ff45774a57253efcc01421ffb27e09a00cc?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000007/protectedItems/AzureFileShare%3B37c9ffd43584e9d23a1b737eeb0919107f2ff4a20027888dbf3ce70f1e5c8cf2?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:05:22 GMT + - Thu, 20 May 2021 02:06:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -9404,24 +10049,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:22 GMT + - Thu, 20 May 2021 02:06:37 GMT expires: - '-1' pragma: @@ -9437,7 +10082,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '129' x-powered-by: - ASP.NET status: @@ -9457,24 +10102,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:23 GMT + - Thu, 20 May 2021 02:06:38 GMT expires: - '-1' pragma: @@ -9490,7 +10135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '128' x-powered-by: - ASP.NET status: @@ -9510,24 +10155,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:25 GMT + - Thu, 20 May 2021 02:06:39 GMT expires: - '-1' pragma: @@ -9543,7 +10188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '127' x-powered-by: - ASP.NET status: @@ -9563,24 +10208,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:26 GMT + - Thu, 20 May 2021 02:06:40 GMT expires: - '-1' pragma: @@ -9596,7 +10241,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '126' x-powered-by: - ASP.NET status: @@ -9616,24 +10261,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:27 GMT + - Thu, 20 May 2021 02:06:41 GMT expires: - '-1' pragma: @@ -9649,7 +10294,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '125' x-powered-by: - ASP.NET status: @@ -9669,24 +10314,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:28 GMT + - Thu, 20 May 2021 02:06:43 GMT expires: - '-1' pragma: @@ -9702,7 +10347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '124' x-powered-by: - ASP.NET status: @@ -9722,24 +10367,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:29 GMT + - Thu, 20 May 2021 02:06:44 GMT expires: - '-1' pragma: @@ -9755,7 +10400,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '123' x-powered-by: - ASP.NET status: @@ -9775,24 +10420,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:31 GMT + - Thu, 20 May 2021 02:06:45 GMT expires: - '-1' pragma: @@ -9808,7 +10453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '122' x-powered-by: - ASP.NET status: @@ -9828,24 +10473,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:32 GMT + - Thu, 20 May 2021 02:06:46 GMT expires: - '-1' pragma: @@ -9861,7 +10506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '121' x-powered-by: - ASP.NET status: @@ -9881,24 +10526,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:33 GMT + - Thu, 20 May 2021 02:06:47 GMT expires: - '-1' pragma: @@ -9914,7 +10559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '120' x-powered-by: - ASP.NET status: @@ -9934,24 +10579,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:34 GMT + - Thu, 20 May 2021 02:06:49 GMT expires: - '-1' pragma: @@ -9967,7 +10612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '119' x-powered-by: - ASP.NET status: @@ -9987,24 +10632,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:35 GMT + - Thu, 20 May 2021 02:06:50 GMT expires: - '-1' pragma: @@ -10020,7 +10665,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '118' x-powered-by: - ASP.NET status: @@ -10040,24 +10685,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:37 GMT + - Thu, 20 May 2021 02:06:52 GMT expires: - '-1' pragma: @@ -10073,7 +10718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '117' x-powered-by: - ASP.NET status: @@ -10093,24 +10738,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:38 GMT + - Thu, 20 May 2021 02:06:53 GMT expires: - '-1' pragma: @@ -10126,7 +10771,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '116' x-powered-by: - ASP.NET status: @@ -10146,24 +10791,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:39 GMT + - Thu, 20 May 2021 02:06:54 GMT expires: - '-1' pragma: @@ -10179,7 +10824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '115' x-powered-by: - ASP.NET status: @@ -10199,24 +10844,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:40 GMT + - Thu, 20 May 2021 02:06:55 GMT expires: - '-1' pragma: @@ -10232,7 +10877,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '114' x-powered-by: - ASP.NET status: @@ -10252,24 +10897,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"InProgress","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:42 GMT + - Thu, 20 May 2021 02:06:56 GMT expires: - '-1' pragma: @@ -10285,7 +10930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '113' x-powered-by: - ASP.NET status: @@ -10305,24 +10950,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9609042e-e7a1-4c86-a605-78881d1cdbdb?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"InProgress","startTime":"2021-04-20T08:05:22.227761Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"9609042e-e7a1-4c86-a605-78881d1cdbdb","name":"9609042e-e7a1-4c86-a605-78881d1cdbdb","status":"Succeeded","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"2021-05-20T02:06:36.8414688Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7a411182-0ffd-48ff-a2be-b2167d559460"}}' headers: cache-control: - no-cache content-length: - - '187' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:43 GMT + - Thu, 20 May 2021 02:06:58 GMT expires: - '-1' pragma: @@ -10338,7 +10983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '112' x-powered-by: - ASP.NET status: @@ -10358,30 +11003,32 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/35cb13a7-67ea-4fc2-8680-dd87ad88f4e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7a411182-0ffd-48ff-a2be-b2167d559460?api-version=2020-10-01 response: body: - string: '{"id":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","name":"35cb13a7-67ea-4fc2-8680-dd87ad88f4e8","status":"Succeeded","startTime":"2021-04-20T08:05:22.227761Z","endTime":"2021-04-20T08:05:22.227761Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d1154e61-77a5-4cfe-8418-f59cfea588a3"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7a411182-0ffd-48ff-a2be-b2167d559460","name":"7a411182-0ffd-48ff-a2be-b2167d559460","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.058385S","storageAccountName":"clitest000007","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000008","Storage Account Name":"clitest000007"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000008","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-20T02:06:36.8414688Z","endTime":"2021-05-20T02:06:57.8998538Z","activityId":"01442e9a-b910-11eb-b6ca-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '302' + - '905' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:44 GMT + - Thu, 20 May 2021 02:07:00 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -10391,7 +11038,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '148' x-powered-by: - ASP.NET status: @@ -10405,38 +11052,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d1154e61-77a5-4cfe-8418-f59cfea588a3?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d1154e61-77a5-4cfe-8418-f59cfea588a3","name":"d1154e61-77a5-4cfe-8418-f59cfea588a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.9370019S","storageAccountName":"clitest000007","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000008","Storage Account Name":"clitest000007"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000008","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-04-20T08:05:22.227761Z","endTime":"2021-04-20T08:05:44.1647629Z","activityId":"26e2bf9e-a1af-11eb-82b2-2cf05d45d149"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '905' + - '880' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:45 GMT + - Thu, 20 May 2021 02:07:00 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -10446,7 +11091,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -10463,48 +11108,46 @@ interactions: - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '880' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:05:45 GMT + - Thu, 20 May 2021 02:07:01 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/87b6e30f-b68f-490a-a232-10b33095dde1?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -10516,41 +11159,43 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:05:46 GMT + - Thu, 20 May 2021 02:07:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?fabricName=Azure?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -10570,18 +11215,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10589,11 +11234,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:46 GMT + - Thu, 20 May 2021 02:07:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -10603,7 +11248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '95' x-powered-by: - ASP.NET status: @@ -10623,18 +11268,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10642,11 +11287,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:48 GMT + - Thu, 20 May 2021 02:07:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -10656,7 +11301,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '94' x-powered-by: - ASP.NET status: @@ -10676,18 +11321,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10695,11 +11340,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:49 GMT + - Thu, 20 May 2021 02:07:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -10709,7 +11354,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '93' x-powered-by: - ASP.NET status: @@ -10729,18 +11374,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10748,11 +11393,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:50 GMT + - Thu, 20 May 2021 02:07:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -10762,7 +11407,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '92' x-powered-by: - ASP.NET status: @@ -10782,18 +11427,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10801,11 +11446,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:52 GMT + - Thu, 20 May 2021 02:07:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -10815,7 +11460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '91' x-powered-by: - ASP.NET status: @@ -10835,18 +11480,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10854,11 +11499,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:53 GMT + - Thu, 20 May 2021 02:07:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -10868,7 +11513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '90' x-powered-by: - ASP.NET status: @@ -10888,18 +11533,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10907,11 +11552,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:54 GMT + - Thu, 20 May 2021 02:07:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -10921,7 +11566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '89' x-powered-by: - ASP.NET status: @@ -10941,18 +11586,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10960,11 +11605,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:55 GMT + - Thu, 20 May 2021 02:07:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -10974,7 +11619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '88' x-powered-by: - ASP.NET status: @@ -10994,18 +11639,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11013,11 +11658,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:56 GMT + - Thu, 20 May 2021 02:07:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -11027,7 +11672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '87' x-powered-by: - ASP.NET status: @@ -11047,18 +11692,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11066,11 +11711,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:58 GMT + - Thu, 20 May 2021 02:07:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -11080,7 +11725,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '86' x-powered-by: - ASP.NET status: @@ -11100,18 +11745,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11119,11 +11764,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:59 GMT + - Thu, 20 May 2021 02:07:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -11133,7 +11778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '85' x-powered-by: - ASP.NET status: @@ -11153,18 +11798,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11172,11 +11817,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:00 GMT + - Thu, 20 May 2021 02:07:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -11186,7 +11831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '84' x-powered-by: - ASP.NET status: @@ -11206,18 +11851,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11225,11 +11870,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:03 GMT + - Thu, 20 May 2021 02:07:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -11239,7 +11884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '83' x-powered-by: - ASP.NET status: @@ -11259,18 +11904,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11278,11 +11923,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:04 GMT + - Thu, 20 May 2021 02:07:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -11292,7 +11937,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '82' x-powered-by: - ASP.NET status: @@ -11312,18 +11957,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11331,11 +11976,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:05 GMT + - Thu, 20 May 2021 02:07:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -11345,7 +11990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '81' x-powered-by: - ASP.NET status: @@ -11365,18 +12010,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11384,11 +12029,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:06 GMT + - Thu, 20 May 2021 02:07:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -11398,7 +12043,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '80' x-powered-by: - ASP.NET status: @@ -11418,18 +12063,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11437,11 +12082,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:08 GMT + - Thu, 20 May 2021 02:07:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 pragma: - no-cache server: @@ -11451,7 +12096,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '79' x-powered-by: - ASP.NET status: @@ -11471,12 +12116,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/fbfadd1e-2342-4e57-aae2-2fe764b97da6?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87b6e30f-b68f-490a-a232-10b33095dde1?api-version=2020-10-01 response: body: string: '' @@ -11486,7 +12131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:06:09 GMT + - Thu, 20 May 2021 02:07:25 GMT expires: - '-1' pragma: @@ -11496,7 +12141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '78' x-powered-by: - ASP.NET status: @@ -11516,8 +12161,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -11533,7 +12178,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:09 GMT + - Thu, 20 May 2021 02:07:25 GMT expires: - '-1' pragma: @@ -11571,8 +12216,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: DELETE @@ -11582,17 +12227,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:06:09 GMT + - Thu, 20 May 2021 02:07:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?fabricName=Azure?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -11600,7 +12245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' x-powered-by: - ASP.NET status: @@ -11620,18 +12265,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11639,11 +12284,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:10 GMT + - Thu, 20 May 2021 02:07:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -11653,7 +12298,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '148' x-powered-by: - ASP.NET status: @@ -11673,18 +12318,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11692,11 +12337,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:11 GMT + - Thu, 20 May 2021 02:07:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -11706,7 +12351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '147' x-powered-by: - ASP.NET status: @@ -11726,18 +12371,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11745,11 +12390,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:13 GMT + - Thu, 20 May 2021 02:07:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -11759,7 +12404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '146' x-powered-by: - ASP.NET status: @@ -11779,18 +12424,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11798,11 +12443,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:14 GMT + - Thu, 20 May 2021 02:07:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -11812,7 +12457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '145' x-powered-by: - ASP.NET status: @@ -11832,18 +12477,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11851,11 +12496,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:15 GMT + - Thu, 20 May 2021 02:07:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -11865,7 +12510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '144' x-powered-by: - ASP.NET status: @@ -11885,18 +12530,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11904,11 +12549,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:16 GMT + - Thu, 20 May 2021 02:07:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -11918,7 +12563,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '143' x-powered-by: - ASP.NET status: @@ -11938,18 +12583,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11957,11 +12602,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:18 GMT + - Thu, 20 May 2021 02:07:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -11971,7 +12616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '142' x-powered-by: - ASP.NET status: @@ -11991,18 +12636,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12010,11 +12655,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:19 GMT + - Thu, 20 May 2021 02:07:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -12024,7 +12669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '141' x-powered-by: - ASP.NET status: @@ -12044,18 +12689,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12063,11 +12708,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:20 GMT + - Thu, 20 May 2021 02:07:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -12077,7 +12722,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '140' x-powered-by: - ASP.NET status: @@ -12097,18 +12742,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12116,11 +12761,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:21 GMT + - Thu, 20 May 2021 02:07:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -12130,7 +12775,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '139' x-powered-by: - ASP.NET status: @@ -12150,18 +12795,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12169,11 +12814,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:23 GMT + - Thu, 20 May 2021 02:07:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -12183,7 +12828,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '138' x-powered-by: - ASP.NET status: @@ -12203,18 +12848,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12222,11 +12867,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:24 GMT + - Thu, 20 May 2021 02:07:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -12236,7 +12881,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '137' x-powered-by: - ASP.NET status: @@ -12256,18 +12901,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12275,11 +12920,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:25 GMT + - Thu, 20 May 2021 02:07:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -12289,7 +12934,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '136' x-powered-by: - ASP.NET status: @@ -12309,18 +12954,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12328,11 +12973,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:26 GMT + - Thu, 20 May 2021 02:07:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -12342,7 +12987,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '135' x-powered-by: - ASP.NET status: @@ -12362,18 +13007,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12381,11 +13026,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:28 GMT + - Thu, 20 May 2021 02:07:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -12395,7 +13040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '134' x-powered-by: - ASP.NET status: @@ -12415,18 +13060,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12434,11 +13079,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:29 GMT + - Thu, 20 May 2021 02:07:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -12448,7 +13093,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '133' x-powered-by: - ASP.NET status: @@ -12468,18 +13113,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationsStatus/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12487,11 +13132,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:30 GMT + - Thu, 20 May 2021 02:07:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 pragma: - no-cache server: @@ -12501,7 +13146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '132' x-powered-by: - ASP.NET status: @@ -12521,12 +13166,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/4b4dc682-3c2d-4049-a411-a61444e4759f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000007/operationResults/563c5ae9-643b-4f9a-8dcd-3fe3d868a017?api-version=2020-10-01 response: body: string: '' @@ -12536,7 +13181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:06:31 GMT + - Thu, 20 May 2021 02:07:48 GMT expires: - '-1' pragma: @@ -12546,7 +13191,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '131' x-powered-by: - ASP.NET status: @@ -12566,8 +13211,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -12583,7 +13228,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:08:12 GMT + - Thu, 20 May 2021 02:09:29 GMT expires: - '-1' pragma: @@ -12609,7 +13254,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -12621,10 +13266,7 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: @@ -12636,7 +13278,7 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:08:14 GMT + - Thu, 20 May 2021 02:09:31 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_item.yaml index 6ff90f883c3..2eb3005d71d 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_item.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_item.yaml @@ -13,19 +13,16 @@ interactions: Content-Length: - '76' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --location User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-04-20T08%3A00%3A59.9851137Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T01%3A58%3A09.9974224Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -34,7 +31,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:00:59 GMT + - Thu, 20 May 2021 01:58:09 GMT expires: - '-1' pragma: @@ -66,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:01:01.1177160Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:01:01.1177160Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-05-20T01:58:11.2300041Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T01:58:11.2300041Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -80,7 +77,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:22 GMT + - Thu, 20 May 2021 01:58:32 GMT expires: - '-1' pragma: @@ -96,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 200 message: OK @@ -108,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 x-ms-date: - - Tue, 20 Apr 2021 08:01:23 GMT + - Thu, 20 May 2021 01:58:32 GMT x-ms-share-quota: - '1' x-ms-version: @@ -124,11 +121,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:22 GMT + - Thu, 20 May 2021 01:58:32 GMT etag: - - '"0x8D903D27D9F4EE9"' + - '"0x8D91B32C5FEBB6F"' last-modified: - - Tue, 20 Apr 2021 08:01:23 GMT + - Thu, 20 May 2021 01:58:33 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -152,12 +149,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:01:01.1177160Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:01:01.1177160Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-05-20T01:58:11.2300041Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T01:58:11.2300041Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -166,7 +163,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:23 GMT + - Thu, 20 May 2021 01:58:33 GMT expires: - '-1' pragma: @@ -182,7 +179,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 200 message: OK @@ -194,9 +191,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 x-ms-date: - - Tue, 20 Apr 2021 08:01:24 GMT + - Thu, 20 May 2021 01:58:33 GMT x-ms-share-quota: - '1' x-ms-version: @@ -210,11 +207,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:23 GMT + - Thu, 20 May 2021 01:58:34 GMT etag: - - '"0x8D903D27E1C2454"' + - '"0x8D91B32C6952AF6"' last-modified: - - Tue, 20 Apr 2021 08:01:24 GMT + - Thu, 20 May 2021 01:58:34 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -236,15 +233,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -253,7 +250,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:24 GMT + - Thu, 20 May 2021 01:58:34 GMT expires: - '-1' pragma: @@ -278,9 +275,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-04-20T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-05-20T11:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-04-20T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-05-20T11:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -298,15 +295,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -315,7 +312,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:25 GMT + - Thu, 20 May 2021 01:58:36 GMT expires: - '-1' pragma: @@ -331,7 +328,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' x-powered-by: - ASP.NET status: @@ -351,15 +348,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -368,7 +365,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:26 GMT + - Thu, 20 May 2021 01:58:36 GMT expires: - '-1' pragma: @@ -393,9 +390,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-04-20T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-05-20T11:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-04-20T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-05-20T11:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -413,15 +410,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -430,7 +427,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:27 GMT + - Thu, 20 May 2021 01:59:01 GMT expires: - '-1' pragma: @@ -466,8 +463,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -483,7 +480,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:28 GMT + - Thu, 20 May 2021 01:59:02 GMT expires: - '-1' pragma: @@ -519,24 +516,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg4q3nzgxlnf;clitestvmm272jdbk44nvtks","name":"StorageContainer;Storage;clitest.rg4q3nzgxlnf;clitestvmm272jdbk44nvtks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvmm272jdbk44nvtks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4q3nzgxlnf/providers/Microsoft.Storage/storageAccounts/clitestvmm272jdbk44nvtks"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqazbuvbahs;clitestcstgav66tjtgvozin","name":"StorageContainer;Storage;clitest.rgqazbuvbahs;clitestcstgav66tjtgvozin","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcstgav66tjtgvozin","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqazbuvbahs/providers/Microsoft.Storage/storageAccounts/clitestcstgav66tjtgvozin"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","name":"StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2en426ykvrdgnlwkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6n3as6rec5/providers/Microsoft.Storage/storageAccounts/clitest2en426ykvrdgnlwkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfbkzva2twq;clitestehbd4sasg3mmfgkl5","name":"StorageContainer;Storage;clitest.rgfbkzva2twq;clitestehbd4sasg3mmfgkl5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestehbd4sasg3mmfgkl5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfbkzva2twq/providers/Microsoft.Storage/storageAccounts/clitestehbd4sasg3mmfgkl5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfbutzpdcc6;clitestuz6wedvgkxh4nsvaq","name":"StorageContainer;Storage;clitest.rgfbutzpdcc6;clitestuz6wedvgkxh4nsvaq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuz6wedvgkxh4nsvaq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfbutzpdcc6/providers/Microsoft.Storage/storageAccounts/clitestuz6wedvgkxh4nsvaq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgvtweopx7lj;clitest3i2mzfioctu3nfznl","name":"StorageContainer;Storage;clitest.rgvtweopx7lj;clitest3i2mzfioctu3nfznl","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3i2mzfioctu3nfznl","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvtweopx7lj/providers/Microsoft.Storage/storageAccounts/clitest3i2mzfioctu3nfznl"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwnfnpizbl2;clitestts4wdnvuga7ucdpzc","name":"StorageContainer;Storage;clitest.rgwnfnpizbl2;clitestts4wdnvuga7ucdpzc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestts4wdnvuga7ucdpzc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwnfnpizbl2/providers/Microsoft.Storage/storageAccounts/clitestts4wdnvuga7ucdpzc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgx6nhebyjey;clitestux2ymb66djm27xvw6","name":"StorageContainer;Storage;clitest.rgx6nhebyjey;clitestux2ymb66djm27xvw6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestux2ymb66djm27xvw6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx6nhebyjey/providers/Microsoft.Storage/storageAccounts/clitestux2ymb66djm27xvw6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: cache-control: - no-cache content-length: - - '13523' + - '16951' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:28 GMT + - Thu, 20 May 2021 01:59:03 GMT expires: - '-1' pragma: @@ -577,8 +574,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT @@ -588,7 +585,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -596,11 +593,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:28 GMT + - Thu, 20 May 2021 01:59:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -630,18 +627,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -649,11 +646,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:29 GMT + - Thu, 20 May 2021 01:59:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -663,7 +660,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -683,18 +680,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -702,11 +699,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:30 GMT + - Thu, 20 May 2021 01:59:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -716,7 +713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -736,18 +733,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -755,11 +752,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:32 GMT + - Thu, 20 May 2021 01:59:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -769,7 +766,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '144' x-powered-by: - ASP.NET status: @@ -789,18 +786,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -808,11 +805,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:33 GMT + - Thu, 20 May 2021 01:59:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -822,7 +819,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '142' x-powered-by: - ASP.NET status: @@ -842,18 +839,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -861,11 +858,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:34 GMT + - Thu, 20 May 2021 01:59:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -875,7 +872,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '140' x-powered-by: - ASP.NET status: @@ -895,18 +892,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -914,11 +911,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:35 GMT + - Thu, 20 May 2021 01:59:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -928,7 +925,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '138' x-powered-by: - ASP.NET status: @@ -948,18 +945,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -967,11 +964,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:37 GMT + - Thu, 20 May 2021 01:59:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -981,7 +978,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '136' x-powered-by: - ASP.NET status: @@ -1001,18 +998,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1020,11 +1017,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:38 GMT + - Thu, 20 May 2021 01:59:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1034,7 +1031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '134' x-powered-by: - ASP.NET status: @@ -1054,18 +1051,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1073,11 +1070,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:39 GMT + - Thu, 20 May 2021 01:59:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1087,7 +1084,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '132' x-powered-by: - ASP.NET status: @@ -1107,18 +1104,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1126,11 +1123,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:41 GMT + - Thu, 20 May 2021 01:59:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1140,7 +1137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '130' x-powered-by: - ASP.NET status: @@ -1160,45 +1157,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/7aae1a08-0a0f-41a4-b3d7-6de54279a216?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:42 GMT + - Thu, 20 May 2021 01:59:16 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '128' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1213,45 +1210,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:42 GMT + - Thu, 20 May 2021 01:59:18 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '126' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1266,45 +1263,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:43 GMT + - Thu, 20 May 2021 01:59:19 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '124' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1316,41 +1313,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:43 GMT + - Thu, 20 May 2021 01:59:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' x-powered-by: - ASP.NET status: @@ -1370,18 +1369,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1389,11 +1388,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:44 GMT + - Thu, 20 May 2021 01:59:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1403,7 +1402,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '120' x-powered-by: - ASP.NET status: @@ -1423,18 +1422,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1442,11 +1441,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:46 GMT + - Thu, 20 May 2021 01:59:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1456,7 +1455,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '118' x-powered-by: - ASP.NET status: @@ -1476,18 +1475,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1495,11 +1494,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:47 GMT + - Thu, 20 May 2021 01:59:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1509,7 +1508,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '116' x-powered-by: - ASP.NET status: @@ -1529,18 +1528,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1548,11 +1547,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:48 GMT + - Thu, 20 May 2021 01:59:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1562,7 +1561,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '114' x-powered-by: - ASP.NET status: @@ -1582,18 +1581,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1601,11 +1600,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:50 GMT + - Thu, 20 May 2021 01:59:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1615,7 +1614,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '112' x-powered-by: - ASP.NET status: @@ -1635,18 +1634,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1654,11 +1653,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:53 GMT + - Thu, 20 May 2021 01:59:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1668,7 +1667,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '110' x-powered-by: - ASP.NET status: @@ -1688,18 +1687,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1707,11 +1706,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:54 GMT + - Thu, 20 May 2021 01:59:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1721,7 +1720,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '108' x-powered-by: - ASP.NET status: @@ -1741,18 +1740,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1760,11 +1759,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:55 GMT + - Thu, 20 May 2021 01:59:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1774,7 +1773,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '106' x-powered-by: - ASP.NET status: @@ -1794,18 +1793,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1813,11 +1812,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:57 GMT + - Thu, 20 May 2021 01:59:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1827,7 +1826,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '104' x-powered-by: - ASP.NET status: @@ -1847,18 +1846,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1866,11 +1865,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:58 GMT + - Thu, 20 May 2021 01:59:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1880,7 +1879,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '102' x-powered-by: - ASP.NET status: @@ -1900,18 +1899,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1919,11 +1918,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:00 GMT + - Thu, 20 May 2021 01:59:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1933,7 +1932,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '100' x-powered-by: - ASP.NET status: @@ -1953,18 +1952,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1972,11 +1971,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:01 GMT + - Thu, 20 May 2021 01:59:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -1986,7 +1985,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '98' x-powered-by: - ASP.NET status: @@ -2006,18 +2005,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2025,11 +2024,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:03 GMT + - Thu, 20 May 2021 01:59:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -2039,7 +2038,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '96' x-powered-by: - ASP.NET status: @@ -2059,18 +2058,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2078,11 +2077,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:04 GMT + - Thu, 20 May 2021 01:59:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: @@ -2092,7 +2091,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '94' x-powered-by: - ASP.NET status: @@ -2112,37 +2111,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55dea71c-d8d8-4518-8ff8-ad689f3a7451?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:02:05 GMT + - Thu, 20 May 2021 01:59:38 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '92' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -2157,49 +2164,47 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","name":"azurefileshare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000005","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","name":"azurefileshare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2067' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:06 GMT + - Thu, 20 May 2021 01:59:39 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '90' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006", - "protectedItemType": "AzureFileShareProtectedItem"}}' + body: null headers: Accept: - application/json @@ -2209,43 +2214,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e/operationsStatus/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:07 GMT + - Thu, 20 May 2021 01:59:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e/operationResults/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '88' x-powered-by: - ASP.NET status: @@ -2265,45 +2270,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:07 GMT + - Thu, 20 May 2021 01:59:42 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '86' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2318,45 +2323,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:09 GMT + - Thu, 20 May 2021 01:59:43 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '84' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2371,45 +2376,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:10 GMT + - Thu, 20 May 2021 01:59:44 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '83' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2424,45 +2429,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:11 GMT + - Thu, 20 May 2021 01:59:45 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '81' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2477,45 +2482,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:12 GMT + - Thu, 20 May 2021 01:59:47 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '79' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2530,1105 +2535,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:13 GMT + - Thu, 20 May 2021 01:59:48 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '77' x-powered-by: - ASP.NET status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 - response: - body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3643,45 +2588,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:39 GMT + - Thu, 20 May 2021 01:59:49 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '75' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3696,45 +2641,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:41 GMT + - Thu, 20 May 2021 01:59:50 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '73' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3749,45 +2694,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:42 GMT + - Thu, 20 May 2021 01:59:51 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '71' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3802,45 +2747,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:43 GMT + - Thu, 20 May 2021 01:59:53 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '69' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3855,45 +2800,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:44 GMT + - Thu, 20 May 2021 01:59:54 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '67' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3908,45 +2853,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:45 GMT + - Thu, 20 May 2021 01:59:55 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '65' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3961,45 +2906,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:47 GMT + - Thu, 20 May 2021 01:59:56 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '63' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4014,45 +2959,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"InProgress","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:48 GMT + - Thu, 20 May 2021 01:59:57 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '61' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4067,45 +3012,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/27b6736c-4ba4-4a08-9ba2-2a2886f9aed2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","name":"27b6736c-4ba4-4a08-9ba2-2a2886f9aed2","status":"Succeeded","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"2021-04-20T08:02:07.2778237Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"425bf333-18a8-4311-88fd-9f0a651eba96"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '304' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:49 GMT + - Thu, 20 May 2021 01:59:59 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '59' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4120,48 +3065,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/425bf333-18a8-4311-88fd-9f0a651eba96?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/425bf333-18a8-4311-88fd-9f0a651eba96","name":"425bf333-18a8-4311-88fd-9f0a651eba96","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.0827699S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000006"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-04-20T08:02:07.2778237Z","endTime":"2021-04-20T08:02:49.3605936Z","activityId":"9bd42610-a1ae-11eb-b8da-2cf05d45d149"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '946' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:50 GMT + - Thu, 20 May 2021 02:00:00 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '57' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4176,45 +3118,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '880' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:50 GMT + - Thu, 20 May 2021 02:00:01 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '55' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4229,45 +3171,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:51 GMT + - Thu, 20 May 2021 02:00:02 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '53' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4276,101 +3218,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","name":"azurefileshare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000005","protectionState":"NotProtected"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1039' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:51 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006", - "protectedItemType": "AzureFileShareProtectedItem"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 + - backup protection enable-for-azurefileshare + Connection: + - keep-alive ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e/operationsStatus/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:53 GMT + - Thu, 20 May 2021 02:00:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e/operationResults/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '51' x-powered-by: - ASP.NET status: @@ -4390,45 +3277,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:53 GMT + - Thu, 20 May 2021 02:00:05 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '49' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4443,45 +3330,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:54 GMT + - Thu, 20 May 2021 02:00:06 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '47' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4496,45 +3383,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:55 GMT + - Thu, 20 May 2021 02:00:07 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '45' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4549,45 +3436,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:57 GMT + - Thu, 20 May 2021 02:00:08 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '43' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4602,45 +3489,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:58 GMT + - Thu, 20 May 2021 02:00:09 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '41' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4655,24 +3542,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/80862f8b-eea9-4b27-997a-112a7a43b531?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' headers: cache-control: - no-cache content-length: - - '188' + - '790' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:59 GMT + - Thu, 20 May 2021 02:00:11 GMT expires: - '-1' pragma: @@ -4688,7 +3575,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '39' x-powered-by: - ASP.NET status: @@ -4708,24 +3595,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:00 GMT + - Thu, 20 May 2021 02:01:11 GMT expires: - '-1' pragma: @@ -4741,7 +3628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: @@ -4758,48 +3645,46 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:02 GMT + - Thu, 20 May 2021 02:01:12 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4814,45 +3699,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:03 GMT + - Thu, 20 May 2021 02:01:12 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '88' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4867,45 +3752,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:04 GMT + - Thu, 20 May 2021 02:01:14 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '87' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4920,45 +3805,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:05 GMT + - Thu, 20 May 2021 02:01:15 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '86' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4973,45 +3858,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:07 GMT + - Thu, 20 May 2021 02:01:16 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '85' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5026,45 +3911,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/87673b42-4328-4622-8b9f-b74fd3ac86d8?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' content-type: - - application/json + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:03:08 GMT + - Thu, 20 May 2021 02:01:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '84' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -5079,24 +3956,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","name":"azurefileshare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","name":"azurefileshare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000005","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '2067' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:09 GMT + - Thu, 20 May 2021 02:01:18 GMT expires: - '-1' pragma: @@ -5112,7 +3989,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '149' x-powered-by: - ASP.NET status: @@ -5132,24 +4009,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '740' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:10 GMT + - Thu, 20 May 2021 02:01:19 GMT expires: - '-1' pragma: @@ -5165,14 +4042,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -5182,48 +4061,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb/operationsStatus/e78b7af8-7d2b-45bf-9c07-dc658b374ece?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:12 GMT + - Thu, 20 May 2021 02:01:20 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb/operationResults/e78b7af8-7d2b-45bf-9c07-dc658b374ece?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5238,15 +4117,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e78b7af8-7d2b-45bf-9c07-dc658b374ece?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","name":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","status":"InProgress","startTime":"2021-05-20T02:01:20.5717208Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5255,7 +4134,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:13 GMT + - Thu, 20 May 2021 02:01:20 GMT expires: - '-1' pragma: @@ -5271,7 +4150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '149' x-powered-by: - ASP.NET status: @@ -5291,15 +4170,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e78b7af8-7d2b-45bf-9c07-dc658b374ece?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","name":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","status":"InProgress","startTime":"2021-05-20T02:01:20.5717208Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5308,7 +4187,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:15 GMT + - Thu, 20 May 2021 02:01:23 GMT expires: - '-1' pragma: @@ -5324,7 +4203,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '148' x-powered-by: - ASP.NET status: @@ -5344,15 +4223,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e78b7af8-7d2b-45bf-9c07-dc658b374ece?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","name":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","status":"InProgress","startTime":"2021-05-20T02:01:20.5717208Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5361,7 +4240,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:16 GMT + - Thu, 20 May 2021 02:01:25 GMT expires: - '-1' pragma: @@ -5377,7 +4256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '147' x-powered-by: - ASP.NET status: @@ -5397,15 +4276,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e78b7af8-7d2b-45bf-9c07-dc658b374ece?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","name":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","status":"InProgress","startTime":"2021-05-20T02:01:20.5717208Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5414,7 +4293,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:17 GMT + - Thu, 20 May 2021 02:01:26 GMT expires: - '-1' pragma: @@ -5430,7 +4309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '146' x-powered-by: - ASP.NET status: @@ -5450,15 +4329,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e78b7af8-7d2b-45bf-9c07-dc658b374ece?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","name":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","status":"InProgress","startTime":"2021-05-20T02:01:20.5717208Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5467,7 +4346,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:18 GMT + - Thu, 20 May 2021 02:01:29 GMT expires: - '-1' pragma: @@ -5483,7 +4362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '145' x-powered-by: - ASP.NET status: @@ -5503,15 +4382,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e78b7af8-7d2b-45bf-9c07-dc658b374ece?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","name":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","status":"InProgress","startTime":"2021-05-20T02:01:20.5717208Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5520,7 +4399,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:20 GMT + - Thu, 20 May 2021 02:01:30 GMT expires: - '-1' pragma: @@ -5536,7 +4415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '144' x-powered-by: - ASP.NET status: @@ -5556,15 +4435,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e78b7af8-7d2b-45bf-9c07-dc658b374ece?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","name":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","status":"InProgress","startTime":"2021-05-20T02:01:20.5717208Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5573,7 +4452,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:21 GMT + - Thu, 20 May 2021 02:01:31 GMT expires: - '-1' pragma: @@ -5589,7 +4468,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '143' x-powered-by: - ASP.NET status: @@ -5609,24 +4488,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e78b7af8-7d2b-45bf-9c07-dc658b374ece?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","name":"e78b7af8-7d2b-45bf-9c07-dc658b374ece","status":"Succeeded","startTime":"2021-05-20T02:01:20.5717208Z","endTime":"2021-05-20T02:01:20.5717208Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1928dee6-86f6-44a5-8075-1b25baec3a3c"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:22 GMT + - Thu, 20 May 2021 02:02:27 GMT expires: - '-1' pragma: @@ -5642,7 +4521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '142' x-powered-by: - ASP.NET status: @@ -5662,30 +4541,33 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1928dee6-86f6-44a5-8075-1b25baec3a3c?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1928dee6-86f6-44a5-8075-1b25baec3a3c","name":"1928dee6-86f6-44a5-8075-1b25baec3a3c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.1790365S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000006"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-20T02:01:20.5717208Z","endTime":"2021-05-20T02:02:02.7507573Z","activityId":"f2ea6ecc-b90e-11eb-8c98-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '188' + - '946' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:24 GMT + - Thu, 20 May 2021 02:02: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: @@ -5695,7 +4577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '148' x-powered-by: - ASP.NET status: @@ -5715,24 +4597,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '880' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:25 GMT + - Thu, 20 May 2021 02:02:28 GMT expires: - '-1' pragma: @@ -5748,7 +4630,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '149' x-powered-by: - ASP.NET status: @@ -5768,24 +4650,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","name":"azurefileshare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000005","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1039' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:26 GMT + - Thu, 20 May 2021 02:02:29 GMT expires: - '-1' pragma: @@ -5801,7 +4683,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '149' x-powered-by: - ASP.NET status: @@ -5821,24 +4703,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","name":"clitest-item000006","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache content-length: - - '188' + - '740' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:28 GMT + - Thu, 20 May 2021 02:02:29 GMT expires: - '-1' pragma: @@ -5854,14 +4736,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -5871,48 +4755,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c/operationsStatus/e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:29 GMT + - Thu, 20 May 2021 02:02:30 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c/operationResults/e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5927,15 +4811,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","name":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","status":"InProgress","startTime":"2021-05-20T02:02:31.0958776Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5944,7 +4828,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:30 GMT + - Thu, 20 May 2021 02:02:30 GMT expires: - '-1' pragma: @@ -5960,7 +4844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '149' x-powered-by: - ASP.NET status: @@ -5980,15 +4864,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","name":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","status":"InProgress","startTime":"2021-05-20T02:02:31.0958776Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5997,7 +4881,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:31 GMT + - Thu, 20 May 2021 02:02:32 GMT expires: - '-1' pragma: @@ -6013,7 +4897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '148' x-powered-by: - ASP.NET status: @@ -6033,15 +4917,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"InProgress","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","name":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","status":"InProgress","startTime":"2021-05-20T02:02:31.0958776Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6050,7 +4934,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:33 GMT + - Thu, 20 May 2021 02:02:33 GMT expires: - '-1' pragma: @@ -6066,7 +4950,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '147' x-powered-by: - ASP.NET status: @@ -6086,24 +4970,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7151dff0-47c3-4a54-966a-e54595fd6a34?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6?api-version=2020-10-01 response: body: - string: '{"id":"7151dff0-47c3-4a54-966a-e54595fd6a34","name":"7151dff0-47c3-4a54-966a-e54595fd6a34","status":"Succeeded","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"2021-04-20T08:02:53.1578053Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f9c35601-874b-4a59-8a4d-04fd67b4f897"}}' + string: '{"id":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","name":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","status":"InProgress","startTime":"2021-05-20T02:02:31.0958776Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:34 GMT + - Thu, 20 May 2021 02:02:34 GMT expires: - '-1' pragma: @@ -6119,7 +5003,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '146' x-powered-by: - ASP.NET status: @@ -6139,33 +5023,30 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f9c35601-874b-4a59-8a4d-04fd67b4f897?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f9c35601-874b-4a59-8a4d-04fd67b4f897","name":"f9c35601-874b-4a59-8a4d-04fd67b4f897","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.5071883S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000005","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000006"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000005","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-04-20T08:02:53.1578053Z","endTime":"2021-04-20T08:03:34.6649936Z","activityId":"cd590a54-a1ae-11eb-be55-2cf05d45d149"}}' + string: '{"id":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","name":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","status":"InProgress","startTime":"2021-05-20T02:02:31.0958776Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '946' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:35 GMT + - Thu, 20 May 2021 02:02:36 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6175,7 +5056,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '145' x-powered-by: - ASP.NET status: @@ -6189,30 +5070,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n --backup-management-type --query + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":2,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '{"id":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","name":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","status":"InProgress","startTime":"2021-05-20T02:02:31.0958776Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '880' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:36 GMT + - Thu, 20 May 2021 02:02:37 GMT expires: - '-1' pragma: @@ -6228,7 +5109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -6242,30 +5123,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","name":"AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","name":"AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' + string: '{"id":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","name":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","status":"InProgress","startTime":"2021-05-20T02:02:31.0958776Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '2693' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:36 GMT + - Thu, 20 May 2021 02:03:20 GMT expires: - '-1' pragma: @@ -6281,7 +5162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -6295,30 +5176,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","name":"AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2021-04-20T08:02:49.0455609Z"},"protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}' + string: '{"id":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","name":"e3ec4473-03c9-4e8b-a6cb-b2c174a0e8c6","status":"Succeeded","startTime":"2021-05-20T02:02:31.0958776Z","endTime":"2021-05-20T02:02:31.0958776Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7d9c7732-3186-401c-aa07-7e05aabef4a4"}}' headers: cache-control: - no-cache content-length: - - '1487' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:37 GMT + - Thu, 20 May 2021 02:03:21 GMT expires: - '-1' pragma: @@ -6334,7 +5215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -6348,36 +5229,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7d9c7732-3186-401c-aa07-7e05aabef4a4?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","name":"AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","name":"AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7d9c7732-3186-401c-aa07-7e05aabef4a4","name":"7d9c7732-3186-401c-aa07-7e05aabef4a4","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.7047074S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000005","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000006"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000005","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-20T02:02:31.0958776Z","endTime":"2021-05-20T02:03:12.800585Z","activityId":"6deaa1ef-b90f-11eb-94f9-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '2693' + - '945' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:37 GMT + - Thu, 20 May 2021 02:03: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: @@ -6387,7 +5271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -6401,30 +5285,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup container show Connection: - keep-alive ParameterSetName: - - -g -v -c + - -g -v -n --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","name":"AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","name":"AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":2,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '2693' + - '880' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:38 GMT + - Thu, 20 May 2021 02:03:39 GMT expires: - '-1' pragma: @@ -6440,7 +5324,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -6454,21 +5338,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -c + - -g -v -c -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","name":"AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","name":"AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","name":"AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","name":"AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -6477,7 +5361,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:39 GMT + - Thu, 20 May 2021 02:03:40 GMT expires: - '-1' pragma: @@ -6507,30 +5391,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","name":"AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","name":"AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","name":"AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2021-05-20T02:02:02.4733694Z"},"protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '2693' + - '1487' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:39 GMT + - Thu, 20 May 2021 02:03:41 GMT expires: - '-1' pragma: @@ -6560,30 +5444,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","name":"AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","name":"AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '740' + - '2693' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:39 GMT + - Thu, 20 May 2021 02:03:41 GMT expires: - '-1' pragma: @@ -6599,67 +5483,65 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007", - "protectedItemType": "AzureFileShareProtectedItem"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item list Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -n -p + - -g -v -c User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 response: body: - string: '' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","name":"AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","name":"AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e/operationsStatus/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '2693' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:41 GMT + - Thu, 20 May 2021 02:03:42 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e/operationResults/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6668,30 +5550,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item set-policy + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -n -p + - -g -v -c User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","name":"AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","name":"AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '2693' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:42 GMT + - Thu, 20 May 2021 02:03:43 GMT expires: - '-1' pragma: @@ -6707,7 +5589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '148' x-powered-by: - ASP.NET status: @@ -6727,24 +5609,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","name":"AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","name":"AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '2693' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:43 GMT + - Thu, 20 May 2021 02:03:48 GMT expires: - '-1' pragma: @@ -6760,7 +5642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '149' x-powered-by: - ASP.NET status: @@ -6780,24 +5662,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","name":"clitest-item000007","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '187' + - '740' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:44 GMT + - Thu, 20 May 2021 02:03:49 GMT expires: - '-1' pragma: @@ -6813,14 +5695,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -6830,48 +5714,48 @@ interactions: - backup item set-policy Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb/operationsStatus/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:46 GMT + - Thu, 20 May 2021 02:03:58 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb/operationResults/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6886,24 +5770,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:47 GMT + - Thu, 20 May 2021 02:03:58 GMT expires: - '-1' pragma: @@ -6919,7 +5803,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '141' x-powered-by: - ASP.NET status: @@ -6939,24 +5823,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:48 GMT + - Thu, 20 May 2021 02:04:00 GMT expires: - '-1' pragma: @@ -6972,7 +5856,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '140' x-powered-by: - ASP.NET status: @@ -6992,24 +5876,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:49 GMT + - Thu, 20 May 2021 02:04:01 GMT expires: - '-1' pragma: @@ -7025,7 +5909,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '139' x-powered-by: - ASP.NET status: @@ -7045,24 +5929,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:50 GMT + - Thu, 20 May 2021 02:04:02 GMT expires: - '-1' pragma: @@ -7078,7 +5962,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '138' x-powered-by: - ASP.NET status: @@ -7098,24 +5982,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:52 GMT + - Thu, 20 May 2021 02:04:04 GMT expires: - '-1' pragma: @@ -7131,7 +6015,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '137' x-powered-by: - ASP.NET status: @@ -7151,24 +6035,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:53 GMT + - Thu, 20 May 2021 02:04:05 GMT expires: - '-1' pragma: @@ -7184,7 +6068,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '136' x-powered-by: - ASP.NET status: @@ -7204,24 +6088,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:54 GMT + - Thu, 20 May 2021 02:04:06 GMT expires: - '-1' pragma: @@ -7237,7 +6121,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '135' x-powered-by: - ASP.NET status: @@ -7257,24 +6141,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:55 GMT + - Thu, 20 May 2021 02:04:07 GMT expires: - '-1' pragma: @@ -7290,7 +6174,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '134' x-powered-by: - ASP.NET status: @@ -7310,24 +6194,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:57 GMT + - Thu, 20 May 2021 02:04:09 GMT expires: - '-1' pragma: @@ -7343,7 +6227,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '133' x-powered-by: - ASP.NET status: @@ -7363,24 +6247,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:58 GMT + - Thu, 20 May 2021 02:04:10 GMT expires: - '-1' pragma: @@ -7396,7 +6280,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '132' x-powered-by: - ASP.NET status: @@ -7416,24 +6300,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:59 GMT + - Thu, 20 May 2021 02:04:11 GMT expires: - '-1' pragma: @@ -7449,7 +6333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '131' x-powered-by: - ASP.NET status: @@ -7469,24 +6353,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:00 GMT + - Thu, 20 May 2021 02:04:12 GMT expires: - '-1' pragma: @@ -7502,7 +6386,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '130' x-powered-by: - ASP.NET status: @@ -7522,24 +6406,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:01 GMT + - Thu, 20 May 2021 02:04:13 GMT expires: - '-1' pragma: @@ -7555,7 +6439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '129' x-powered-by: - ASP.NET status: @@ -7575,24 +6459,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:03 GMT + - Thu, 20 May 2021 02:04:15 GMT expires: - '-1' pragma: @@ -7608,7 +6492,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '128' x-powered-by: - ASP.NET status: @@ -7628,24 +6512,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:04 GMT + - Thu, 20 May 2021 02:04:16 GMT expires: - '-1' pragma: @@ -7661,7 +6545,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '127' x-powered-by: - ASP.NET status: @@ -7681,24 +6565,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:05 GMT + - Thu, 20 May 2021 02:04:17 GMT expires: - '-1' pragma: @@ -7714,7 +6598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '126' x-powered-by: - ASP.NET status: @@ -7734,24 +6618,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:07 GMT + - Thu, 20 May 2021 02:04:18 GMT expires: - '-1' pragma: @@ -7767,7 +6651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '125' x-powered-by: - ASP.NET status: @@ -7787,24 +6671,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:08 GMT + - Thu, 20 May 2021 02:04:20 GMT expires: - '-1' pragma: @@ -7820,7 +6704,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '124' x-powered-by: - ASP.NET status: @@ -7840,24 +6724,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:09 GMT + - Thu, 20 May 2021 02:04:21 GMT expires: - '-1' pragma: @@ -7873,7 +6757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '123' x-powered-by: - ASP.NET status: @@ -7893,24 +6777,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:10 GMT + - Thu, 20 May 2021 02:04:22 GMT expires: - '-1' pragma: @@ -7926,7 +6810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '122' x-powered-by: - ASP.NET status: @@ -7946,24 +6830,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:12 GMT + - Thu, 20 May 2021 02:04:24 GMT expires: - '-1' pragma: @@ -7979,7 +6863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '121' x-powered-by: - ASP.NET status: @@ -7999,24 +6883,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:13 GMT + - Thu, 20 May 2021 02:04:25 GMT expires: - '-1' pragma: @@ -8032,7 +6916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '120' x-powered-by: - ASP.NET status: @@ -8052,24 +6936,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:14 GMT + - Thu, 20 May 2021 02:04:26 GMT expires: - '-1' pragma: @@ -8085,7 +6969,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '119' x-powered-by: - ASP.NET status: @@ -8105,24 +6989,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:16 GMT + - Thu, 20 May 2021 02:04:29 GMT expires: - '-1' pragma: @@ -8138,7 +7022,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '118' x-powered-by: - ASP.NET status: @@ -8158,24 +7042,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:17 GMT + - Thu, 20 May 2021 02:04:31 GMT expires: - '-1' pragma: @@ -8191,7 +7075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '117' x-powered-by: - ASP.NET status: @@ -8211,24 +7095,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:18 GMT + - Thu, 20 May 2021 02:04:34 GMT expires: - '-1' pragma: @@ -8244,7 +7128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '116' x-powered-by: - ASP.NET status: @@ -8264,24 +7148,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:19 GMT + - Thu, 20 May 2021 02:04:35 GMT expires: - '-1' pragma: @@ -8297,7 +7181,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '115' x-powered-by: - ASP.NET status: @@ -8317,24 +7201,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"InProgress","startTime":"2021-04-20T08:03:41.598846Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"InProgress","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:20 GMT + - Thu, 20 May 2021 02:04:36 GMT expires: - '-1' pragma: @@ -8350,7 +7234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '114' x-powered-by: - ASP.NET status: @@ -8370,24 +7254,24 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d4881f25-8af0-4c93-a5d1-a09565470d60?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e0b5cdc4-840e-42c6-94fc-7f45f51196e8?api-version=2020-10-01 response: body: - string: '{"id":"d4881f25-8af0-4c93-a5d1-a09565470d60","name":"d4881f25-8af0-4c93-a5d1-a09565470d60","status":"Succeeded","startTime":"2021-04-20T08:03:41.598846Z","endTime":"2021-04-20T08:03:41.598846Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"799d395a-ba07-4bca-a356-16fa0be00cdd"}}' + string: '{"id":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","name":"e0b5cdc4-840e-42c6-94fc-7f45f51196e8","status":"Succeeded","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"2021-05-20T02:03:57.2715497Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"322a99c9-f01c-4578-be19-49f0b62e7abf"}}' headers: cache-control: - no-cache content-length: - - '302' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:22 GMT + - Thu, 20 May 2021 02:04:40 GMT expires: - '-1' pragma: @@ -8403,7 +7287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '113' x-powered-by: - ASP.NET status: @@ -8423,26 +7307,26 @@ interactions: ParameterSetName: - -g -v -c -n -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/799d395a-ba07-4bca-a356-16fa0be00cdd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/322a99c9-f01c-4578-be19-49f0b62e7abf?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/799d395a-ba07-4bca-a356-16fa0be00cdd","name":"799d395a-ba07-4bca-a356-16fa0be00cdd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.1922132S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/322a99c9-f01c-4578-be19-49f0b62e7abf","name":"322a99c9-f01c-4578-be19-49f0b62e7abf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.3542717S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000007"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-04-20T08:03:41.598846Z","endTime":"2021-04-20T08:04:22.7910592Z","activityId":"ea6c454c-a1ae-11eb-8364-2cf05d45d149"}}' + Name":"clitest-item000007"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-20T02:03:57.2715497Z","endTime":"2021-05-20T02:04:38.6258214Z","activityId":"9a9f7cb4-b90f-11eb-b6c7-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '945' + - '946' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:23 GMT + - Thu, 20 May 2021 02:04:41 GMT expires: - '-1' pragma: @@ -8459,7 +7343,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -8479,15 +7363,15 @@ interactions: ParameterSetName: - -g -v -c -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","name":"AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","name":"AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","name":"AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","name":"AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -8496,7 +7380,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:24 GMT + - Thu, 20 May 2021 02:04:42 GMT expires: - '-1' pragma: @@ -8532,15 +7416,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","name":"AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","name":"AzureFileShare;6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","name":"AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","name":"AzureFileShare;1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000007","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -8549,7 +7433,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:25 GMT + - Thu, 20 May 2021 02:04:43 GMT expires: - '-1' pragma: @@ -8587,28 +7471,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B6319ef1b54d6e1afa9b9c552803cfac085824aaac1881896ab79bcf17362b64e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B1f16b392bc8cf875e3ec912fd7e373f08b54d3ece38f37926686d891f7a9d5fb?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:04:25 GMT + - Thu, 20 May 2021 02:04:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -8616,7 +7500,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -8636,24 +7520,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:26 GMT + - Thu, 20 May 2021 02:04:43 GMT expires: - '-1' pragma: @@ -8689,24 +7573,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:27 GMT + - Thu, 20 May 2021 02:04:46 GMT expires: - '-1' pragma: @@ -8742,24 +7626,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:28 GMT + - Thu, 20 May 2021 02:04:47 GMT expires: - '-1' pragma: @@ -8795,24 +7679,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:29 GMT + - Thu, 20 May 2021 02:04:48 GMT expires: - '-1' pragma: @@ -8848,24 +7732,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:31 GMT + - Thu, 20 May 2021 02:04:49 GMT expires: - '-1' pragma: @@ -8901,24 +7785,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:32 GMT + - Thu, 20 May 2021 02:04:51 GMT expires: - '-1' pragma: @@ -8954,24 +7838,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:33 GMT + - Thu, 20 May 2021 02:04:52 GMT expires: - '-1' pragma: @@ -9007,24 +7891,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:34 GMT + - Thu, 20 May 2021 02:04:53 GMT expires: - '-1' pragma: @@ -9060,24 +7944,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:37 GMT + - Thu, 20 May 2021 02:04:54 GMT expires: - '-1' pragma: @@ -9113,24 +7997,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:38 GMT + - Thu, 20 May 2021 02:04:56 GMT expires: - '-1' pragma: @@ -9166,24 +8050,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:39 GMT + - Thu, 20 May 2021 02:04:57 GMT expires: - '-1' pragma: @@ -9219,24 +8103,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:41 GMT + - Thu, 20 May 2021 02:04:58 GMT expires: - '-1' pragma: @@ -9272,24 +8156,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:42 GMT + - Thu, 20 May 2021 02:04:59 GMT expires: - '-1' pragma: @@ -9325,24 +8209,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:43 GMT + - Thu, 20 May 2021 02:05:01 GMT expires: - '-1' pragma: @@ -9378,24 +8262,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:44 GMT + - Thu, 20 May 2021 02:05:02 GMT expires: - '-1' pragma: @@ -9431,24 +8315,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:46 GMT + - Thu, 20 May 2021 02:05:03 GMT expires: - '-1' pragma: @@ -9484,24 +8368,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"InProgress","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"InProgress","startTime":"2021-05-20T02:04:44.167161Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:47 GMT + - Thu, 20 May 2021 02:05:04 GMT expires: - '-1' pragma: @@ -9537,24 +8421,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1f987a20-357c-413a-a3e2-dfcf880f7fbd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2?api-version=2020-10-01 response: body: - string: '{"id":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","name":"1f987a20-357c-413a-a3e2-dfcf880f7fbd","status":"Succeeded","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"2021-04-20T08:04:26.3797945Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f3e0cc8d-34f5-45aa-b9dd-0d3c5d07967f"}}' + string: '{"id":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","name":"e4610c1e-b022-4cb4-9b9e-a0c41ae39cd2","status":"Succeeded","startTime":"2021-05-20T02:04:44.167161Z","endTime":"2021-05-20T02:04:44.167161Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"aeb0988d-0d20-49d7-9b85-f5ee5b397ff3"}}' headers: cache-control: - no-cache content-length: - - '304' + - '302' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:48 GMT + - Thu, 20 May 2021 02:05:06 GMT expires: - '-1' pragma: @@ -9590,25 +8474,25 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f3e0cc8d-34f5-45aa-b9dd-0d3c5d07967f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/aeb0988d-0d20-49d7-9b85-f5ee5b397ff3?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f3e0cc8d-34f5-45aa-b9dd-0d3c5d07967f","name":"f3e0cc8d-34f5-45aa-b9dd-0d3c5d07967f","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.1269837S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-04-20T08:04:26.3797945Z","endTime":"2021-04-20T08:04:47.5067782Z","activityId":"05c9a114-a1af-11eb-83db-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/aeb0988d-0d20-49d7-9b85-f5ee5b397ff3","name":"aeb0988d-0d20-49d7-9b85-f5ee5b397ff3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.2441566S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-20T02:04:44.167161Z","endTime":"2021-05-20T02:05:05.4113176Z","activityId":"be040230-b90f-11eb-af16-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '906' + - '905' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:48 GMT + - Thu, 20 May 2021 02:05:06 GMT expires: - '-1' pragma: @@ -9625,7 +8509,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -9645,15 +8529,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","name":"AzureFileShare;2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","name":"AzureFileShare;684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000005","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000006","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -9662,7 +8546,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:49 GMT + - Thu, 20 May 2021 02:05:06 GMT expires: - '-1' pragma: @@ -9678,7 +8562,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -9700,28 +8584,28 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B2bacaf0673f543efd30e51eed7548469381c9fca4307ae7d22d337559ce6829e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B684fa41d53b22c3ffa6efe12bc529793fbc277c0fcf9a6426f72e8efeeffdc4c?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:04:49 GMT + - Thu, 20 May 2021 02:05:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -9729,7 +8613,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -9749,15 +8633,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9766,7 +8650,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:50 GMT + - Thu, 20 May 2021 02:05:09 GMT expires: - '-1' pragma: @@ -9782,7 +8666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '149' x-powered-by: - ASP.NET status: @@ -9802,15 +8686,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9819,7 +8703,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:51 GMT + - Thu, 20 May 2021 02:05:10 GMT expires: - '-1' pragma: @@ -9835,7 +8719,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '148' x-powered-by: - ASP.NET status: @@ -9855,15 +8739,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9872,7 +8756,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:52 GMT + - Thu, 20 May 2021 02:05:11 GMT expires: - '-1' pragma: @@ -9888,7 +8772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '147' x-powered-by: - ASP.NET status: @@ -9908,15 +8792,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9925,7 +8809,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:54 GMT + - Thu, 20 May 2021 02:05:13 GMT expires: - '-1' pragma: @@ -9941,7 +8825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '146' x-powered-by: - ASP.NET status: @@ -9961,15 +8845,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -9978,7 +8862,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:55 GMT + - Thu, 20 May 2021 02:05:14 GMT expires: - '-1' pragma: @@ -9994,7 +8878,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '145' x-powered-by: - ASP.NET status: @@ -10014,15 +8898,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10031,7 +8915,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:56 GMT + - Thu, 20 May 2021 02:05:15 GMT expires: - '-1' pragma: @@ -10047,7 +8931,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '144' x-powered-by: - ASP.NET status: @@ -10067,15 +8951,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10084,7 +8968,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:57 GMT + - Thu, 20 May 2021 02:05:17 GMT expires: - '-1' pragma: @@ -10100,7 +8984,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '143' x-powered-by: - ASP.NET status: @@ -10120,15 +9004,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10137,7 +9021,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:59 GMT + - Thu, 20 May 2021 02:05:18 GMT expires: - '-1' pragma: @@ -10153,7 +9037,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '142' x-powered-by: - ASP.NET status: @@ -10173,15 +9057,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10190,7 +9074,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:00 GMT + - Thu, 20 May 2021 02:05:19 GMT expires: - '-1' pragma: @@ -10206,7 +9090,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '141' x-powered-by: - ASP.NET status: @@ -10226,15 +9110,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10243,7 +9127,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:01 GMT + - Thu, 20 May 2021 02:05:20 GMT expires: - '-1' pragma: @@ -10259,7 +9143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '140' x-powered-by: - ASP.NET status: @@ -10279,15 +9163,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10296,7 +9180,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:02 GMT + - Thu, 20 May 2021 02:05:22 GMT expires: - '-1' pragma: @@ -10312,7 +9196,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '139' x-powered-by: - ASP.NET status: @@ -10332,15 +9216,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10349,7 +9233,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:03 GMT + - Thu, 20 May 2021 02:05:23 GMT expires: - '-1' pragma: @@ -10365,7 +9249,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '138' x-powered-by: - ASP.NET status: @@ -10385,15 +9269,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10402,7 +9286,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:05 GMT + - Thu, 20 May 2021 02:05:24 GMT expires: - '-1' pragma: @@ -10418,7 +9302,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '137' x-powered-by: - ASP.NET status: @@ -10438,15 +9322,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10455,7 +9339,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:06 GMT + - Thu, 20 May 2021 02:05:26 GMT expires: - '-1' pragma: @@ -10471,7 +9355,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '136' x-powered-by: - ASP.NET status: @@ -10491,15 +9375,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10508,7 +9392,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:07 GMT + - Thu, 20 May 2021 02:05:27 GMT expires: - '-1' pragma: @@ -10524,7 +9408,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '135' x-powered-by: - ASP.NET status: @@ -10544,15 +9428,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10561,7 +9445,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:08 GMT + - Thu, 20 May 2021 02:05:28 GMT expires: - '-1' pragma: @@ -10577,7 +9461,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '134' x-powered-by: - ASP.NET status: @@ -10597,15 +9481,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"InProgress","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"InProgress","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -10614,7 +9498,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:10 GMT + - Thu, 20 May 2021 02:05:29 GMT expires: - '-1' pragma: @@ -10630,7 +9514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '133' x-powered-by: - ASP.NET status: @@ -10650,15 +9534,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0c074f16-1956-47c3-8652-e03cd2e07363?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/03a310a5-d253-47f3-8418-4bcd13c1bc60?api-version=2020-10-01 response: body: - string: '{"id":"0c074f16-1956-47c3-8652-e03cd2e07363","name":"0c074f16-1956-47c3-8652-e03cd2e07363","status":"Succeeded","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"2021-04-20T08:04:50.2720982Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a9860a92-3aea-472c-a314-cb033d3778d5"}}' + string: '{"id":"03a310a5-d253-47f3-8418-4bcd13c1bc60","name":"03a310a5-d253-47f3-8418-4bcd13c1bc60","status":"Succeeded","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"2021-05-20T02:05:09.3875599Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"78dc4eae-4cba-4c1a-bb8f-37a039e4ed25"}}' headers: cache-control: - no-cache @@ -10667,7 +9551,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:11 GMT + - Thu, 20 May 2021 02:05:31 GMT expires: - '-1' pragma: @@ -10683,7 +9567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '132' x-powered-by: - ASP.NET status: @@ -10703,16 +9587,16 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9860a92-3aea-472c-a314-cb033d3778d5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/78dc4eae-4cba-4c1a-bb8f-37a039e4ed25?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a9860a92-3aea-472c-a314-cb033d3778d5","name":"a9860a92-3aea-472c-a314-cb033d3778d5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.1985342S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000005","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000005","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-04-20T08:04:50.2720982Z","endTime":"2021-04-20T08:05:11.4706324Z","activityId":"1408435c-a1af-11eb-ad6a-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/78dc4eae-4cba-4c1a-bb8f-37a039e4ed25","name":"78dc4eae-4cba-4c1a-bb8f-37a039e4ed25","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.6668528S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000005","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000005","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-20T02:05:09.3875599Z","endTime":"2021-05-20T02:05:31.0544127Z","activityId":"cc6572d0-b90f-11eb-b0b5-b07b250bf939"}}' headers: cache-control: - no-cache @@ -10721,7 +9605,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:12 GMT + - Thu, 20 May 2021 02:05:32 GMT expires: - '-1' pragma: @@ -10738,7 +9622,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -10758,8 +9642,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -10775,7 +9659,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:12 GMT + - Thu, 20 May 2021 02:05:32 GMT expires: - '-1' pragma: @@ -10813,8 +9697,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: DELETE @@ -10824,17 +9708,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:05:13 GMT + - Thu, 20 May 2021 02:05:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?fabricName=Azure?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/362f30ba-41c1-4618-ab60-b064a1188f52?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -10842,7 +9726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -10862,18 +9746,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10881,11 +9765,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:14 GMT + - Thu, 20 May 2021 02:05:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -10915,18 +9799,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10934,11 +9818,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:15 GMT + - Thu, 20 May 2021 02:05:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -10968,18 +9852,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10987,11 +9871,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:16 GMT + - Thu, 20 May 2021 02:05:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11021,18 +9905,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11040,11 +9924,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:17 GMT + - Thu, 20 May 2021 02:05:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11074,18 +9958,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11093,11 +9977,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:19 GMT + - Thu, 20 May 2021 02:05:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11127,18 +10011,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11146,11 +10030,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:20 GMT + - Thu, 20 May 2021 02:05:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11180,18 +10064,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11199,11 +10083,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:22 GMT + - Thu, 20 May 2021 02:05:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11233,18 +10117,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11252,11 +10136,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:23 GMT + - Thu, 20 May 2021 02:05:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11286,18 +10170,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11305,11 +10189,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:24 GMT + - Thu, 20 May 2021 02:05:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11339,18 +10223,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11358,11 +10242,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:26 GMT + - Thu, 20 May 2021 02:05:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11392,18 +10276,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11411,11 +10295,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:27 GMT + - Thu, 20 May 2021 02:05:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11445,18 +10329,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11464,11 +10348,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:28 GMT + - Thu, 20 May 2021 02:05:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11498,18 +10382,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11517,11 +10401,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:29 GMT + - Thu, 20 May 2021 02:05:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11551,18 +10435,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11570,11 +10454,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:31 GMT + - Thu, 20 May 2021 02:05:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11604,18 +10488,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11623,11 +10507,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:32 GMT + - Thu, 20 May 2021 02:05:56 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11657,18 +10541,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11676,11 +10560,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:33 GMT + - Thu, 20 May 2021 02:05:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11710,18 +10594,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11729,11 +10613,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:34 GMT + - Thu, 20 May 2021 02:05:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 pragma: - no-cache server: @@ -11763,12 +10647,118 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:06:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --yes --backup-management-type + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:06:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '131' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --yes --backup-management-type + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4d25cf32-ac34-4e2a-8407-1c01619750cf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/362f30ba-41c1-4618-ab60-b064a1188f52?api-version=2020-10-01 response: body: string: '' @@ -11778,7 +10768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:05:36 GMT + - Thu, 20 May 2021 02:06:03 GMT expires: - '-1' pragma: @@ -11788,7 +10778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '130' x-powered-by: - ASP.NET status: @@ -11808,8 +10798,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -11825,7 +10815,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:17 GMT + - Thu, 20 May 2021 02:07:44 GMT expires: - '-1' pragma: @@ -11851,7 +10841,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -11863,10 +10853,7 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: @@ -11878,7 +10865,7 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:07:19 GMT + - Thu, 20 May 2021 02:07:45 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_policy.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_policy.yaml index d9134339246..6c48fbdbab7 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_policy.yaml @@ -13,28 +13,25 @@ interactions: Content-Length: - '76' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --location User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-04-20T08%3A01%3A00.033159Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T01%3A58%3A09.6581021Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '483' + - '484' content-type: - application/json date: - - Tue, 20 Apr 2021 08:00:59 GMT + - Thu, 20 May 2021 01:58:09 GMT expires: - '-1' pragma: @@ -66,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:01:01.0864174Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:01:01.0864174Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-05-20T01:58:10.9799750Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T01:58:10.9799750Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -80,7 +77,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:22 GMT + - Thu, 20 May 2021 01:58:32 GMT expires: - '-1' pragma: @@ -96,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' status: code: 200 message: OK @@ -108,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 x-ms-date: - - Tue, 20 Apr 2021 08:01:23 GMT + - Thu, 20 May 2021 01:58:33 GMT x-ms-share-quota: - '1' x-ms-version: @@ -124,11 +121,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:23 GMT + - Thu, 20 May 2021 01:58:32 GMT etag: - - '"0x8D903D27DA95380"' + - '"0x8D91B32C62F9198"' last-modified: - - Tue, 20 Apr 2021 08:01:23 GMT + - Thu, 20 May 2021 01:58:33 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -150,15 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -167,7 +164,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:24 GMT + - Thu, 20 May 2021 01:58:56 GMT expires: - '-1' pragma: @@ -192,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-04-20T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-05-20T11:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-04-20T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-05-20T11:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -212,15 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -229,7 +226,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:25 GMT + - Thu, 20 May 2021 01:58:57 GMT expires: - '-1' pragma: @@ -245,7 +242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' x-powered-by: - ASP.NET status: @@ -265,8 +262,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -282,7 +279,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:26 GMT + - Thu, 20 May 2021 01:58:57 GMT expires: - '-1' pragma: @@ -318,24 +315,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg4q3nzgxlnf;clitestvmm272jdbk44nvtks","name":"StorageContainer;Storage;clitest.rg4q3nzgxlnf;clitestvmm272jdbk44nvtks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvmm272jdbk44nvtks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4q3nzgxlnf/providers/Microsoft.Storage/storageAccounts/clitestvmm272jdbk44nvtks"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmo2nydjblg;clitestlw46oj7uezllwqspb","name":"StorageContainer;Storage;clitest.rgmo2nydjblg;clitestlw46oj7uezllwqspb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlw46oj7uezllwqspb","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmo2nydjblg/providers/Microsoft.Storage/storageAccounts/clitestlw46oj7uezllwqspb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgqazbuvbahs;clitestcstgav66tjtgvozin","name":"StorageContainer;Storage;clitest.rgqazbuvbahs;clitestcstgav66tjtgvozin","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcstgav66tjtgvozin","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqazbuvbahs/providers/Microsoft.Storage/storageAccounts/clitestcstgav66tjtgvozin"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","name":"StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2en426ykvrdgnlwkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6n3as6rec5/providers/Microsoft.Storage/storageAccounts/clitest2en426ykvrdgnlwkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfbkzva2twq;clitestehbd4sasg3mmfgkl5","name":"StorageContainer;Storage;clitest.rgfbkzva2twq;clitestehbd4sasg3mmfgkl5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestehbd4sasg3mmfgkl5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfbkzva2twq/providers/Microsoft.Storage/storageAccounts/clitestehbd4sasg3mmfgkl5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgptrybj4fg5;clitest4cli4nyytkxxlu4ek","name":"StorageContainer;Storage;clitest.rgptrybj4fg5;clitest4cli4nyytkxxlu4ek","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest4cli4nyytkxxlu4ek","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptrybj4fg5/providers/Microsoft.Storage/storageAccounts/clitest4cli4nyytkxxlu4ek"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgvtweopx7lj;clitest3i2mzfioctu3nfznl","name":"StorageContainer;Storage;clitest.rgvtweopx7lj;clitest3i2mzfioctu3nfznl","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3i2mzfioctu3nfznl","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvtweopx7lj/providers/Microsoft.Storage/storageAccounts/clitest3i2mzfioctu3nfznl"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwnfnpizbl2;clitestts4wdnvuga7ucdpzc","name":"StorageContainer;Storage;clitest.rgwnfnpizbl2;clitestts4wdnvuga7ucdpzc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestts4wdnvuga7ucdpzc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwnfnpizbl2/providers/Microsoft.Storage/storageAccounts/clitestts4wdnvuga7ucdpzc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgx6nhebyjey;clitestux2ymb66djm27xvw6","name":"StorageContainer;Storage;clitest.rgx6nhebyjey;clitestux2ymb66djm27xvw6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestux2ymb66djm27xvw6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx6nhebyjey/providers/Microsoft.Storage/storageAccounts/clitestux2ymb66djm27xvw6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: cache-control: - no-cache content-length: - - '14300' + - '16951' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:26 GMT + - Thu, 20 May 2021 01:58:58 GMT expires: - '-1' pragma: @@ -351,7 +348,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -376,8 +373,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT @@ -387,7 +384,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -395,11 +392,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:27 GMT + - Thu, 20 May 2021 01:58:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -429,18 +426,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -448,11 +445,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:28 GMT + - Thu, 20 May 2021 01:59:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -482,18 +479,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -501,11 +498,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:29 GMT + - Thu, 20 May 2021 01:59:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -535,18 +532,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -554,11 +551,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:30 GMT + - Thu, 20 May 2021 01:59:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -588,18 +585,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -607,11 +604,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:31 GMT + - Thu, 20 May 2021 01:59:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -641,18 +638,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -660,11 +657,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:33 GMT + - Thu, 20 May 2021 01:59:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -694,18 +691,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -713,11 +710,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:34 GMT + - Thu, 20 May 2021 01:59:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -747,18 +744,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -766,11 +763,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:35 GMT + - Thu, 20 May 2021 01:59:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -800,18 +797,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -819,11 +816,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:36 GMT + - Thu, 20 May 2021 01:59:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -853,18 +850,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -872,11 +869,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:37 GMT + - Thu, 20 May 2021 01:59:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -906,18 +903,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -925,11 +922,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:39 GMT + - Thu, 20 May 2021 01:59:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -959,18 +956,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -978,11 +975,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:40 GMT + - Thu, 20 May 2021 01:59:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1012,18 +1009,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1031,11 +1028,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:41 GMT + - Thu, 20 May 2021 01:59:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1065,18 +1062,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1084,11 +1081,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:42 GMT + - Thu, 20 May 2021 01:59:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1118,18 +1115,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1137,11 +1134,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:43 GMT + - Thu, 20 May 2021 01:59:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1171,18 +1168,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1190,11 +1187,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:45 GMT + - Thu, 20 May 2021 01:59:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1224,18 +1221,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1243,11 +1240,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:46 GMT + - Thu, 20 May 2021 01:59:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1277,18 +1274,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1296,11 +1293,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:47 GMT + - Thu, 20 May 2021 01:59:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1330,18 +1327,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1349,11 +1346,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:48 GMT + - Thu, 20 May 2021 01:59:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1383,18 +1380,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1402,11 +1399,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:49 GMT + - Thu, 20 May 2021 01:59:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1436,18 +1433,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1455,11 +1452,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:53 GMT + - Thu, 20 May 2021 01:59:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1489,18 +1486,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1508,11 +1505,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:56 GMT + - Thu, 20 May 2021 01:59:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1542,18 +1539,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1561,11 +1558,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:57 GMT + - Thu, 20 May 2021 01:59:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1595,18 +1592,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1614,11 +1611,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:58 GMT + - Thu, 20 May 2021 01:59:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1648,18 +1645,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1667,11 +1664,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:59 GMT + - Thu, 20 May 2021 01:59:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1701,18 +1698,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1720,11 +1717,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:01 GMT + - Thu, 20 May 2021 01:59:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1754,18 +1751,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1773,11 +1770,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:02 GMT + - Thu, 20 May 2021 01:59:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1807,18 +1804,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/f492c066-cea0-4181-8148-1b128701ca99?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1826,11 +1823,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:03 GMT + - Thu, 20 May 2021 01:59:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -1860,36 +1857,36 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/f492c066-cea0-4181-8148-1b128701ca99?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:04 GMT + - Thu, 20 May 2021 01:59:33 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -1897,8 +1894,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1913,45 +1910,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:05 GMT + - Thu, 20 May 2021 01:59:34 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '121' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1966,45 +1963,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:06 GMT + - Thu, 20 May 2021 01:59:36 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '120' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2016,41 +2013,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:07 GMT + - Thu, 20 May 2021 01:59:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' x-powered-by: - ASP.NET status: @@ -2070,18 +2069,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2089,11 +2088,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:07 GMT + - Thu, 20 May 2021 01:59:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -2103,7 +2102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '118' x-powered-by: - ASP.NET status: @@ -2123,18 +2122,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2142,11 +2141,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:09 GMT + - Thu, 20 May 2021 01:59:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -2156,7 +2155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '117' x-powered-by: - ASP.NET status: @@ -2176,18 +2175,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2195,11 +2194,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:10 GMT + - Thu, 20 May 2021 01:59:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -2209,7 +2208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '116' x-powered-by: - ASP.NET status: @@ -2229,18 +2228,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2248,11 +2247,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:11 GMT + - Thu, 20 May 2021 01:59:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -2262,7 +2261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '115' x-powered-by: - ASP.NET status: @@ -2282,18 +2281,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2301,11 +2300,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:12 GMT + - Thu, 20 May 2021 01:59:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: @@ -2315,7 +2314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '114' x-powered-by: - ASP.NET status: @@ -2335,37 +2334,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6efbb837-8712-4f33-95f7-a7a5760e5607?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:02:14 GMT + - Thu, 20 May 2021 01:59:44 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '113' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -2380,49 +2387,47 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;bf3f5419ad5c07df128fec4ab7277377b626439cd1253187d171587db35ba7f2","name":"azurefileshare;bf3f5419ad5c07df128fec4ab7277377b626439cd1253187d171587db35ba7f2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1039' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:14 GMT + - Thu, 20 May 2021 01:59:45 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '112' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", - "protectedItemType": "AzureFileShareProtectedItem"}}' + body: null headers: Accept: - application/json @@ -2432,43 +2437,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3Bbf3f5419ad5c07df128fec4ab7277377b626439cd1253187d171587db35ba7f2?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;bf3f5419ad5c07df128fec4ab7277377b626439cd1253187d171587db35ba7f2/operationsStatus/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:15 GMT + - Thu, 20 May 2021 01:59:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;bf3f5419ad5c07df128fec4ab7277377b626439cd1253187d171587db35ba7f2/operationResults/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' x-powered-by: - ASP.NET status: @@ -2488,45 +2493,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:15 GMT + - Thu, 20 May 2021 01:59:49 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '110' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2541,45 +2546,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:16 GMT + - Thu, 20 May 2021 01:59:50 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '109' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2594,45 +2599,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:17 GMT + - Thu, 20 May 2021 01:59:51 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '108' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2647,45 +2652,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:18 GMT + - Thu, 20 May 2021 01:59:52 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '107' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2700,45 +2705,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:19 GMT + - Thu, 20 May 2021 01:59:54 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '106' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2753,45 +2758,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:21 GMT + - Thu, 20 May 2021 01:59:55 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '105' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2806,45 +2811,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:23 GMT + - Thu, 20 May 2021 01:59:56 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '104' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2859,45 +2864,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:24 GMT + - Thu, 20 May 2021 01:59:57 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '103' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2912,45 +2917,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:25 GMT + - Thu, 20 May 2021 01:59:58 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '102' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2965,45 +2970,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:27 GMT + - Thu, 20 May 2021 02:00:00 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '101' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3018,45 +3023,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:28 GMT + - Thu, 20 May 2021 02:00:01 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '100' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3071,45 +3076,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:29 GMT + - Thu, 20 May 2021 02:00:02 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '99' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3124,45 +3129,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:31 GMT + - Thu, 20 May 2021 02:00:03 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '98' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3177,45 +3182,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:32 GMT + - Thu, 20 May 2021 02:00:04 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '97' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3230,45 +3235,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:33 GMT + - Thu, 20 May 2021 02:00:06 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '96' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3283,45 +3288,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:35 GMT + - Thu, 20 May 2021 02:00:07 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '95' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3336,24 +3341,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/386cc75e-e769-413b-9995-8ab4fe56f212?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' headers: cache-control: - no-cache content-length: - - '188' + - '790' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:36 GMT + - Thu, 20 May 2021 02:00:08 GMT expires: - '-1' pragma: @@ -3369,7 +3374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '94' x-powered-by: - ASP.NET status: @@ -3389,24 +3394,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:37 GMT + - Thu, 20 May 2021 02:00:09 GMT expires: - '-1' pragma: @@ -3422,7 +3427,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '149' x-powered-by: - ASP.NET status: @@ -3439,48 +3444,46 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:02:39 GMT + - Thu, 20 May 2021 02:00:09 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3495,45 +3498,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:40 GMT + - Thu, 20 May 2021 02:00:10 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '93' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3548,45 +3551,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:41 GMT + - Thu, 20 May 2021 02:00:11 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '92' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3601,45 +3604,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:43 GMT + - Thu, 20 May 2021 02:00:13 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '91' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3654,45 +3657,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:44 GMT + - Thu, 20 May 2021 02:00:14 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '90' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3707,45 +3710,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/d7721589-04c4-4ec5-b39a-b0492a69f0db?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' content-type: - - application/json + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:02:46 GMT + - Thu, 20 May 2021 02:00:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '89' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -3760,24 +3755,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;c964ba6759c32eaa469a98861a403d87f5f2907a5f9944eb8c9198b997b168c5","name":"azurefileshare;c964ba6759c32eaa469a98861a403d87f5f2907a5f9944eb8c9198b997b168c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1039' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:47 GMT + - Thu, 20 May 2021 02:00:15 GMT expires: - '-1' pragma: @@ -3793,7 +3788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '149' x-powered-by: - ASP.NET status: @@ -3813,24 +3808,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '740' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:48 GMT + - Thu, 20 May 2021 02:00:16 GMT expires: - '-1' pragma: @@ -3846,14 +3841,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -3863,48 +3860,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3Bc964ba6759c32eaa469a98861a403d87f5f2907a5f9944eb8c9198b997b168c5?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;c964ba6759c32eaa469a98861a403d87f5f2907a5f9944eb8c9198b997b168c5/operationsStatus/12c22f21-368c-46ae-a4e7-3112c23b3786?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:02:49 GMT + - Thu, 20 May 2021 02:00:17 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;c964ba6759c32eaa469a98861a403d87f5f2907a5f9944eb8c9198b997b168c5/operationResults/12c22f21-368c-46ae-a4e7-3112c23b3786?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + x-ms-ratelimit-remaining-subscription-writes: + - '1197' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3919,1073 +3916,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12c22f21-368c-46ae-a4e7-3112c23b3786?api-version=2020-10-01 response: body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' + string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive + a response from ''Microsoft.RecoveryServices'' within the specified time period."}}' headers: cache-control: - no-cache + connection: + - close content-length: - - '188' + - '154' content-type: - - application/json + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:02:51 GMT + - Thu, 20 May 2021 02:01:18 GMT expires: - '-1' pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 - response: - body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 - response: - body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 - response: - body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:54 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 - response: - body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 - response: - body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 - response: - body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 - response: - body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:59 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 - response: - body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"InProgress","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:03:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/16f31005-ee36-472b-8772-239c63fab410?api-version=2020-10-01 - response: - body: - string: '{"id":"16f31005-ee36-472b-8772-239c63fab410","name":"16f31005-ee36-472b-8772-239c63fab410","status":"Succeeded","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"2021-04-20T08:02:15.4905643Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e9eb4273-58f6-4d19-9a87-8f1a7a3cac26"}}' - headers: - cache-control: - - no-cache - content-length: - - '304' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:03:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e9eb4273-58f6-4d19-9a87-8f1a7a3cac26?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e9eb4273-58f6-4d19-9a87-8f1a7a3cac26","name":"e9eb4273-58f6-4d19-9a87-8f1a7a3cac26","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT46.6944321S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-04-20T08:02:15.4905643Z","endTime":"2021-04-20T08:03:02.1849964Z","activityId":"9af5e18a-a1ae-11eb-ad5f-2cf05d45d149"}}' - headers: - cache-control: - - no-cache - content-length: - - '946' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08: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-ms-ratelimit-remaining-subscription-resource-requests: - - '147' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup policy list - Connection: - - keep-alive - ParameterSetName: - - -g -v --backup-management-type - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' - headers: - cache-control: - - no-cache - content-length: - - '752' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:03:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup policy show - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' - headers: - cache-control: - - no-cache - content-length: - - '740' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:03:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"protectedItemsCount": 1, "backupManagementType": "AzureStorage", - "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-04-20T18:00:00.000Z"], - "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-04-20T18:00:00.000Z"], "retentionDuration": - {"count": 25, "durationType": "Days"}}}, "timeZone": "UTC"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup policy create - Connection: - - keep-alive - Content-Length: - - '512' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v --policy --name --backup-management-type - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' - headers: - cache-control: - - no-cache - content-length: - - '724' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:03:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup policy show - Connection: - - keep-alive - ParameterSetName: - - -g -v --n - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' - headers: - cache-control: - - no-cache - content-length: - - '724' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:03:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup policy list - Connection: - - keep-alive - ParameterSetName: - - -g -v --backup-management-type - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1477' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:03:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup policy set - Connection: - - keep-alive - ParameterSetName: - - -g -v --policy -n - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' - headers: - cache-control: - - no-cache - content-length: - - '724' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:03:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", - "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-04-20T18:00:00.000Z"], - "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-04-20T18:00:00.000Z"], "retentionDuration": - {"count": 20, "durationType": "Days"}}}, "timeZone": "UTC"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup policy set - Connection: - - keep-alive - Content-Length: - - '512' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v --policy -n - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' - headers: - cache-control: - - no-cache - content-length: - - '724' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:03:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup policy show - Connection: - - keep-alive - ParameterSetName: - - -g -v -n - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' - headers: - cache-control: - - no-cache - content-length: - - '724' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:03:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item list - Connection: - - keep-alive - ParameterSetName: - - -g -v -c --backup-management-type --query - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf3f5419ad5c07df128fec4ab7277377b626439cd1253187d171587db35ba7f2","name":"AzureFileShare;bf3f5419ad5c07df128fec4ab7277377b626439cd1253187d171587db35ba7f2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1352' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:03:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - service status: - code: 200 - message: OK + code: 504 + message: Gateway Timeout - request: body: null headers: @@ -4994,30 +3958,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/12c22f21-368c-46ae-a4e7-3112c23b3786?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;bf3f5419ad5c07df128fec4ab7277377b626439cd1253187d171587db35ba7f2","name":"AzureFileShare;bf3f5419ad5c07df128fec4ab7277377b626439cd1253187d171587db35ba7f2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"12c22f21-368c-46ae-a4e7-3112c23b3786","name":"12c22f21-368c-46ae-a4e7-3112c23b3786","status":"Succeeded","startTime":"2021-05-20T02:00:17.9307431Z","endTime":"2021-05-20T02:00:17.9307431Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"db2892e0-3c46-47c8-bf96-dc7ec8b225f5"}}' headers: cache-control: - no-cache content-length: - - '1352' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:10 GMT + - Thu, 20 May 2021 02:01:19 GMT expires: - '-1' pragma: @@ -5033,7 +3997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -5047,49 +4011,54 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bbf3f5419ad5c07df128fec4ab7277377b626439cd1253187d171587db35ba7f2?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db2892e0-3c46-47c8-bf96-dc7ec8b225f5?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/db2892e0-3c46-47c8-bf96-dc7ec8b225f5","name":"db2892e0-3c46-47c8-bf96-dc7ec8b225f5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.4283764S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-20T02:00:17.9307431Z","endTime":"2021-05-20T02:01:00.3591195Z","activityId":"f062dc2e-b90e-11eb-8951-b07b250bf939"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '946' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:11 GMT + - Thu, 20 May 2021 02:01:20 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5098,30 +4067,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup policy list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '752' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:11 GMT + - Thu, 20 May 2021 02:01:20 GMT expires: - '-1' pragma: @@ -5151,30 +4120,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup policy show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":1}}' headers: cache-control: - no-cache content-length: - - '188' + - '740' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:12 GMT + - Thu, 20 May 2021 02:01:20 GMT expires: - '-1' pragma: @@ -5190,44 +4159,53 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"protectedItemsCount": 1, "backupManagementType": "AzureStorage", + "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-05-20T11:30:00.000Z"], + "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": {"retentionTimes": ["2021-05-20T11:30:00.000Z"], "retentionDuration": + {"count": 25, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup policy create Connection: - keep-alive + Content-Length: + - '512' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --policy --name --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '724' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:13 GMT + - Thu, 20 May 2021 02:02:14 GMT expires: - '-1' pragma: @@ -5242,8 +4220,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: @@ -5257,30 +4235,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup policy show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '724' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:16 GMT + - Thu, 20 May 2021 02:02:15 GMT expires: - '-1' pragma: @@ -5296,7 +4274,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -5310,30 +4288,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup policy list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1477' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:17 GMT + - Thu, 20 May 2021 02:02:15 GMT expires: - '-1' pragma: @@ -5349,7 +4327,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: @@ -5363,30 +4341,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup policy set Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --policy -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":25,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '724' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:18 GMT + - Thu, 20 May 2021 02:02:16 GMT expires: - '-1' pragma: @@ -5402,44 +4380,53 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", + "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-05-20T11:30:00.000Z"], + "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", + "dailySchedule": {"retentionTimes": ["2021-05-20T11:30:00.000Z"], "retentionDuration": + {"count": 20, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup policy set Connection: - keep-alive + Content-Length: + - '512' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --policy -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '724' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:19 GMT + - Thu, 20 May 2021 02:02:16 GMT expires: - '-1' pragma: @@ -5454,8 +4441,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + x-ms-ratelimit-remaining-subscription-writes: + - '1197' x-powered-by: - ASP.NET status: @@ -5469,30 +4456,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup policy show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitestafspolicy","name":"clitestafspolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":20,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '724' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:21 GMT + - Thu, 20 May 2021 02:02:17 GMT expires: - '-1' pragma: @@ -5508,7 +4495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '149' x-powered-by: - ASP.NET status: @@ -5522,30 +4509,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;c964ba6759c32eaa469a98861a403d87f5f2907a5f9944eb8c9198b997b168c5","name":"AzureFileShare;c964ba6759c32eaa469a98861a403d87f5f2907a5f9944eb8c9198b997b168c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1352' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:22 GMT + - Thu, 20 May 2021 02:02:18 GMT expires: - '-1' pragma: @@ -5561,7 +4548,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '149' x-powered-by: - ASP.NET status: @@ -5581,24 +4568,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;c964ba6759c32eaa469a98861a403d87f5f2907a5f9944eb8c9198b997b168c5","name":"AzureFileShare;c964ba6759c32eaa469a98861a403d87f5f2907a5f9944eb8c9198b997b168c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1352' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:23 GMT + - Thu, 20 May 2021 02:02:18 GMT expires: - '-1' pragma: @@ -5614,7 +4601,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '148' x-powered-by: - ASP.NET status: @@ -5631,48 +4618,46 @@ interactions: - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bc964ba6759c32eaa469a98861a403d87f5f2907a5f9944eb8c9198b997b168c5?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/46ec339e-0305-4d97-b146-34e6366dc1d9?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:24 GMT + - Thu, 20 May 2021 02:02:20 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/46ec339e-0305-4d97-b146-34e6366dc1d9?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5687,15 +4672,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/46ec339e-0305-4d97-b146-34e6366dc1d9?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"46ec339e-0305-4d97-b146-34e6366dc1d9","name":"46ec339e-0305-4d97-b146-34e6366dc1d9","status":"InProgress","startTime":"2021-05-20T02:02:20.0463715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5704,7 +4689,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:26 GMT + - Thu, 20 May 2021 02:02:20 GMT expires: - '-1' pragma: @@ -5720,7 +4705,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '149' x-powered-by: - ASP.NET status: @@ -5740,15 +4725,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/46ec339e-0305-4d97-b146-34e6366dc1d9?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"46ec339e-0305-4d97-b146-34e6366dc1d9","name":"46ec339e-0305-4d97-b146-34e6366dc1d9","status":"InProgress","startTime":"2021-05-20T02:02:20.0463715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5757,7 +4742,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:27 GMT + - Thu, 20 May 2021 02:02:21 GMT expires: - '-1' pragma: @@ -5773,7 +4758,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '148' x-powered-by: - ASP.NET status: @@ -5793,15 +4778,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/46ec339e-0305-4d97-b146-34e6366dc1d9?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"46ec339e-0305-4d97-b146-34e6366dc1d9","name":"46ec339e-0305-4d97-b146-34e6366dc1d9","status":"InProgress","startTime":"2021-05-20T02:02:20.0463715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5810,7 +4795,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:28 GMT + - Thu, 20 May 2021 02:02:22 GMT expires: - '-1' pragma: @@ -5826,7 +4811,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '147' x-powered-by: - ASP.NET status: @@ -5846,15 +4831,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/46ec339e-0305-4d97-b146-34e6366dc1d9?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"46ec339e-0305-4d97-b146-34e6366dc1d9","name":"46ec339e-0305-4d97-b146-34e6366dc1d9","status":"InProgress","startTime":"2021-05-20T02:02:20.0463715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5863,7 +4848,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:29 GMT + - Thu, 20 May 2021 02:02:23 GMT expires: - '-1' pragma: @@ -5879,7 +4864,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '146' x-powered-by: - ASP.NET status: @@ -5899,15 +4884,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/46ec339e-0305-4d97-b146-34e6366dc1d9?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"46ec339e-0305-4d97-b146-34e6366dc1d9","name":"46ec339e-0305-4d97-b146-34e6366dc1d9","status":"InProgress","startTime":"2021-05-20T02:02:20.0463715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5916,7 +4901,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:31 GMT + - Thu, 20 May 2021 02:02:25 GMT expires: - '-1' pragma: @@ -5932,7 +4917,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '145' x-powered-by: - ASP.NET status: @@ -5952,15 +4937,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/46ec339e-0305-4d97-b146-34e6366dc1d9?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"InProgress","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"46ec339e-0305-4d97-b146-34e6366dc1d9","name":"46ec339e-0305-4d97-b146-34e6366dc1d9","status":"InProgress","startTime":"2021-05-20T02:02:20.0463715Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5969,7 +4954,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:32 GMT + - Thu, 20 May 2021 02:02:26 GMT expires: - '-1' pragma: @@ -5985,7 +4970,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '144' x-powered-by: - ASP.NET status: @@ -6005,15 +4990,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23633646-0692-41f3-bcd5-11a67b0a2072?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/46ec339e-0305-4d97-b146-34e6366dc1d9?api-version=2020-10-01 response: body: - string: '{"id":"23633646-0692-41f3-bcd5-11a67b0a2072","name":"23633646-0692-41f3-bcd5-11a67b0a2072","status":"Succeeded","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"2021-04-20T08:03:11.4738657Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e24afafd-8428-4b9e-920d-8ec86ce88bfd"}}' + string: '{"id":"46ec339e-0305-4d97-b146-34e6366dc1d9","name":"46ec339e-0305-4d97-b146-34e6366dc1d9","status":"Succeeded","startTime":"2021-05-20T02:02:20.0463715Z","endTime":"2021-05-20T02:02:20.0463715Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2eb360e9-f06e-41a0-aa3f-966c2071bfbf"}}' headers: cache-control: - no-cache @@ -6022,7 +5007,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:33 GMT + - Thu, 20 May 2021 02:03:18 GMT expires: - '-1' pragma: @@ -6038,7 +5023,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '143' x-powered-by: - ASP.NET status: @@ -6058,25 +5043,25 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e24afafd-8428-4b9e-920d-8ec86ce88bfd?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2eb360e9-f06e-41a0-aa3f-966c2071bfbf?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e24afafd-8428-4b9e-920d-8ec86ce88bfd","name":"e24afafd-8428-4b9e-920d-8ec86ce88bfd","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.6344123S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-04-20T08:03:11.4738657Z","endTime":"2021-04-20T08:03:33.108278Z","activityId":"d9179f00-a1ae-11eb-a2c5-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2eb360e9-f06e-41a0-aa3f-966c2071bfbf","name":"2eb360e9-f06e-41a0-aa3f-966c2071bfbf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.1196054S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-20T02:02:20.0463715Z","endTime":"2021-05-20T02:02:41.1659769Z","activityId":"6824fea8-b90f-11eb-80d3-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '905' + - '906' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:33 GMT + - Thu, 20 May 2021 02:03:17 GMT expires: - '-1' pragma: @@ -6093,7 +5078,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -6113,8 +5098,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -6130,7 +5115,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:34 GMT + - Thu, 20 May 2021 02:03:34 GMT expires: - '-1' pragma: @@ -6146,7 +5131,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -6168,8 +5153,8 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: DELETE @@ -6179,17 +5164,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:03:34 GMT + - Thu, 20 May 2021 02:03:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/bcf347a1-1104-461d-bc8d-76469c46256c?fabricName=Azure?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -6197,7 +5182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -6217,18 +5202,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6236,11 +5221,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:34 GMT + - Thu, 20 May 2021 02:03:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6270,18 +5255,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6289,11 +5274,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:36 GMT + - Thu, 20 May 2021 02:03:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6323,18 +5308,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6342,11 +5327,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:37 GMT + - Thu, 20 May 2021 02:03:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6376,18 +5361,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6395,11 +5380,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:38 GMT + - Thu, 20 May 2021 02:03:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6429,18 +5414,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6448,11 +5433,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:40 GMT + - Thu, 20 May 2021 02:03:41 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6482,18 +5467,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6501,11 +5486,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:42 GMT + - Thu, 20 May 2021 02:03:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6535,18 +5520,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6554,11 +5539,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:45 GMT + - Thu, 20 May 2021 02:03:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6588,18 +5573,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6607,11 +5592,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:46 GMT + - Thu, 20 May 2021 02:03:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6641,18 +5626,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6660,11 +5645,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:47 GMT + - Thu, 20 May 2021 02:03:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6694,18 +5679,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6713,11 +5698,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:48 GMT + - Thu, 20 May 2021 02:03:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6747,18 +5732,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6766,11 +5751,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:50 GMT + - Thu, 20 May 2021 02:03:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6800,18 +5785,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6819,11 +5804,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:51 GMT + - Thu, 20 May 2021 02:03:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6853,18 +5838,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6872,11 +5857,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:52 GMT + - Thu, 20 May 2021 02:03:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6906,18 +5891,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6925,11 +5910,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:53 GMT + - Thu, 20 May 2021 02:03:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -6959,18 +5944,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6978,11 +5963,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:54 GMT + - Thu, 20 May 2021 02:03:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -7012,18 +5997,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7031,11 +6016,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:56 GMT + - Thu, 20 May 2021 02:03:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -7065,18 +6050,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7084,11 +6069,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:57 GMT + - Thu, 20 May 2021 02:03:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 pragma: - no-cache server: @@ -7118,12 +6103,65 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:03:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '132' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup container unregister + Connection: + - keep-alive + ParameterSetName: + - -g -v -c --yes --backup-management-type + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bcf347a1-1104-461d-bc8d-76469c46256c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c52d9848-18f6-4eec-932d-59ec06db95fc?api-version=2020-10-01 response: body: string: '' @@ -7133,7 +6171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:03:58 GMT + - Thu, 20 May 2021 02:04:00 GMT expires: - '-1' pragma: @@ -7143,7 +6181,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '131' x-powered-by: - ASP.NET status: @@ -7163,8 +6201,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -7180,7 +6218,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:39 GMT + - Thu, 20 May 2021 02:05:41 GMT expires: - '-1' pragma: @@ -7196,7 +6234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -7206,7 +6244,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -7218,10 +6256,7 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: @@ -7233,7 +6268,7 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:05:42 GMT + - Thu, 20 May 2021 02:05:43 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_protection.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_protection.yaml index 24e1b3ad4fc..b75377ed51d 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_protection.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_protection.yaml @@ -13,19 +13,16 @@ interactions: Content-Length: - '76' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --location User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-04-20T08%3A00%3A50.8294128Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T01%3A58%3A09.2517181Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -34,7 +31,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:00:50 GMT + - Thu, 20 May 2021 01:58:09 GMT expires: - '-1' pragma: @@ -66,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:00:51.6956620Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:00:51.6956620Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-05-20T01:58:10.5580911Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T01:58:10.5580911Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -80,7 +77,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:13 GMT + - Thu, 20 May 2021 01:58:32 GMT expires: - '-1' pragma: @@ -108,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 x-ms-date: - - Tue, 20 Apr 2021 08:01:14 GMT + - Thu, 20 May 2021 01:58:32 GMT x-ms-share-quota: - '1' x-ms-version: @@ -124,11 +121,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:13 GMT + - Thu, 20 May 2021 01:58:32 GMT etag: - - '"0x8D903D2785A820E"' + - '"0x8D91B32C5DFBCCA"' last-modified: - - Tue, 20 Apr 2021 08:01:14 GMT + - Thu, 20 May 2021 01:58:33 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -150,15 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -167,7 +164,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:14 GMT + - Thu, 20 May 2021 01:58:33 GMT expires: - '-1' pragma: @@ -192,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-04-20T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-05-20T11:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-04-20T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-05-20T11:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -212,15 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -229,7 +226,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:15 GMT + - Thu, 20 May 2021 01:58:34 GMT expires: - '-1' pragma: @@ -265,8 +262,8 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -282,7 +279,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:16 GMT + - Thu, 20 May 2021 01:58:35 GMT expires: - '-1' pragma: @@ -318,24 +315,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7oitcrjdac;clitest3css44lk72ph5o2uo","name":"StorageContainer;Storage;clitest.rg7oitcrjdac;clitest3css44lk72ph5o2uo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3css44lk72ph5o2uo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7oitcrjdac/providers/Microsoft.Storage/storageAccounts/clitest3css44lk72ph5o2uo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgd2nt7ybiah;clitestnuiwq6ur2p3c6xpic","name":"StorageContainer;Storage;clitest.rgd2nt7ybiah;clitestnuiwq6ur2p3c6xpic","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestnuiwq6ur2p3c6xpic","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2nt7ybiah/providers/Microsoft.Storage/storageAccounts/clitestnuiwq6ur2p3c6xpic"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkan3yc2foi;clitestcjfjsv55rpwf6ly7f","name":"StorageContainer;Storage;clitest.rgkan3yc2foi;clitestcjfjsv55rpwf6ly7f","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcjfjsv55rpwf6ly7f","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkan3yc2foi/providers/Microsoft.Storage/storageAccounts/clitestcjfjsv55rpwf6ly7f"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkcgxxdmcpb;clitestor23bh3frisg2chyj","name":"StorageContainer;Storage;clitest.rgkcgxxdmcpb;clitestor23bh3frisg2chyj","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestor23bh3frisg2chyj","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkcgxxdmcpb/providers/Microsoft.Storage/storageAccounts/clitestor23bh3frisg2chyj"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkcgxxdmcpb;clitestwjrqtjtnm6npwmh62","name":"StorageContainer;Storage;clitest.rgkcgxxdmcpb;clitestwjrqtjtnm6npwmh62","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestwjrqtjtnm6npwmh62","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkcgxxdmcpb/providers/Microsoft.Storage/storageAccounts/clitestwjrqtjtnm6npwmh62"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmtoqicuun6;clitestq4thfwiwuxz7u5l64","name":"StorageContainer;Storage;clitest.rgmtoqicuun6;clitestq4thfwiwuxz7u5l64","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestq4thfwiwuxz7u5l64","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmtoqicuun6/providers/Microsoft.Storage/storageAccounts/clitestq4thfwiwuxz7u5l64"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgs422nhpt72;clitestq53ayjz56gz2w3dyq","name":"StorageContainer;Storage;clitest.rgs422nhpt72;clitestq53ayjz56gz2w3dyq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestq53ayjz56gz2w3dyq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs422nhpt72/providers/Microsoft.Storage/storageAccounts/clitestq53ayjz56gz2w3dyq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgx4qlflfe4n;clitestqpulobwt3nr5lvamv","name":"StorageContainer;Storage;clitest.rgx4qlflfe4n;clitestqpulobwt3nr5lvamv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqpulobwt3nr5lvamv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx4qlflfe4n/providers/Microsoft.Storage/storageAccounts/clitestqpulobwt3nr5lvamv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgygxnchhsbw;clitestqdhirdhfznxp3ddvh","name":"StorageContainer;Storage;clitest.rgygxnchhsbw;clitestqdhirdhfznxp3ddvh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqdhirdhfznxp3ddvh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgygxnchhsbw/providers/Microsoft.Storage/storageAccounts/clitestqdhirdhfznxp3ddvh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfazjeok6ml;clitesttxaw35hykx6vp7stn","name":"StorageContainer;Storage;clitest.rgfazjeok6ml;clitesttxaw35hykx6vp7stn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesttxaw35hykx6vp7stn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfazjeok6ml/providers/Microsoft.Storage/storageAccounts/clitesttxaw35hykx6vp7stn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: cache-control: - no-cache content-length: - - '13767' + - '12289' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:17 GMT + - Thu, 20 May 2021 01:58:35 GMT expires: - '-1' pragma: @@ -373,8 +370,8 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: POST @@ -384,17 +381,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/b0724955-081a-4711-8a84-23f09174a9b6?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:17 GMT + - Thu, 20 May 2021 01:58:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b0724955-081a-4711-8a84-23f09174a9b6?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -422,12 +419,12 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b0724955-081a-4711-8a84-23f09174a9b6?api-version=2020-10-01 response: body: string: '' @@ -437,11 +434,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:18 GMT + - Thu, 20 May 2021 01:58:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b0724955-081a-4711-8a84-23f09174a9b6?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -469,26 +466,22 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/b0724955-081a-4711-8a84-23f09174a9b6?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache - content-length: - - '0' date: - - Tue, 20 Apr 2021 08:01:19 GMT + - Thu, 20 May 2021 01:59:01 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -500,8 +493,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -516,41 +509,48 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","name":"StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2en426ykvrdgnlwkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6n3as6rec5/providers/Microsoft.Storage/storageAccounts/clitest2en426ykvrdgnlwkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfbkzva2twq;clitestehbd4sasg3mmfgkl5","name":"StorageContainer;Storage;clitest.rgfbkzva2twq;clitestehbd4sasg3mmfgkl5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestehbd4sasg3mmfgkl5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfbkzva2twq/providers/Microsoft.Storage/storageAccounts/clitestehbd4sasg3mmfgkl5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgptrybj4fg5;clitest4cli4nyytkxxlu4ek","name":"StorageContainer;Storage;clitest.rgptrybj4fg5;clitest4cli4nyytkxxlu4ek","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest4cli4nyytkxxlu4ek","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptrybj4fg5/providers/Microsoft.Storage/storageAccounts/clitest4cli4nyytkxxlu4ek"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgvtweopx7lj;clitest3i2mzfioctu3nfznl","name":"StorageContainer;Storage;clitest.rgvtweopx7lj;clitest3i2mzfioctu3nfznl","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3i2mzfioctu3nfznl","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvtweopx7lj/providers/Microsoft.Storage/storageAccounts/clitest3i2mzfioctu3nfznl"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgx6nhebyjey;clitestux2ymb66djm27xvw6","name":"StorageContainer;Storage;clitest.rgx6nhebyjey;clitestux2ymb66djm27xvw6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestux2ymb66djm27xvw6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx6nhebyjey/providers/Microsoft.Storage/storageAccounts/clitestux2ymb66djm27xvw6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '16174' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:20 GMT + - Thu, 20 May 2021 01:59:02 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": + "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' headers: Accept: - application/json @@ -560,37 +560,47 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:22 GMT + - Thu, 20 May 2021 01:59:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + x-ms-ratelimit-remaining-subscription-writes: + - '1197' x-powered-by: - ASP.NET status: @@ -610,34 +620,40 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:23 GMT + - Thu, 20 May 2021 01:59:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: @@ -657,34 +673,40 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:24 GMT + - Thu, 20 May 2021 01:59:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '148' x-powered-by: - ASP.NET status: @@ -704,34 +726,40 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:26 GMT + - Thu, 20 May 2021 01:59:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '147' x-powered-by: - ASP.NET status: @@ -751,34 +779,40 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:27 GMT + - Thu, 20 May 2021 01:59:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '146' x-powered-by: - ASP.NET status: @@ -798,35 +832,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/957f397c-bd40-461d-9fca-979c1cd5d3f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:28 GMT + - Thu, 20 May 2021 01:59:09 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '145' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -841,48 +885,47 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg4q3nzgxlnf;clitestvmm272jdbk44nvtks","name":"StorageContainer;Storage;clitest.rg4q3nzgxlnf;clitestvmm272jdbk44nvtks","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestvmm272jdbk44nvtks","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4q3nzgxlnf/providers/Microsoft.Storage/storageAccounts/clitestvmm272jdbk44nvtks"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmo2nydjblg;clitestlw46oj7uezllwqspb","name":"StorageContainer;Storage;clitest.rgmo2nydjblg;clitestlw46oj7uezllwqspb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestlw46oj7uezllwqspb","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmo2nydjblg/providers/Microsoft.Storage/storageAccounts/clitestlw46oj7uezllwqspb"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '13523' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:29 GMT + - Thu, 20 May 2021 01:59:10 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' + body: null headers: Accept: - application/json @@ -892,25 +935,21 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -918,11 +957,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:30 GMT + - Thu, 20 May 2021 01:59:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -931,8 +970,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: @@ -952,18 +991,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -971,11 +1010,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:30 GMT + - Thu, 20 May 2021 01:59:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -985,7 +1024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -1005,18 +1044,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1024,11 +1063,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:32 GMT + - Thu, 20 May 2021 01:59:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1038,7 +1077,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '141' x-powered-by: - ASP.NET status: @@ -1058,18 +1097,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1077,11 +1116,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:33 GMT + - Thu, 20 May 2021 01:59:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1091,7 +1130,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '140' x-powered-by: - ASP.NET status: @@ -1111,18 +1150,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1130,11 +1169,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:34 GMT + - Thu, 20 May 2021 01:59:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1144,7 +1183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '139' x-powered-by: - ASP.NET status: @@ -1164,18 +1203,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1183,11 +1222,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:35 GMT + - Thu, 20 May 2021 01:59:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1197,7 +1236,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '138' x-powered-by: - ASP.NET status: @@ -1217,18 +1256,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1236,11 +1275,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:37 GMT + - Thu, 20 May 2021 01:59:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1250,7 +1289,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '137' x-powered-by: - ASP.NET status: @@ -1270,18 +1309,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1289,11 +1328,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:38 GMT + - Thu, 20 May 2021 01:59:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1303,7 +1342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '136' x-powered-by: - ASP.NET status: @@ -1323,18 +1362,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1342,11 +1381,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:39 GMT + - Thu, 20 May 2021 01:59:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1356,7 +1395,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '135' x-powered-by: - ASP.NET status: @@ -1376,18 +1415,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1395,11 +1434,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:40 GMT + - Thu, 20 May 2021 01:59:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1409,7 +1448,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '134' x-powered-by: - ASP.NET status: @@ -1429,18 +1468,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1448,11 +1487,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:41 GMT + - Thu, 20 May 2021 01:59:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1462,7 +1501,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '133' x-powered-by: - ASP.NET status: @@ -1482,45 +1521,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6175d12c-b652-4dfb-8c8f-fc06ef4ef1c0?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:43 GMT + - Thu, 20 May 2021 01:59:55 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '132' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1535,45 +1574,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:44 GMT + - Thu, 20 May 2021 01:59:56 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '131' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1588,45 +1627,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:43 GMT + - Thu, 20 May 2021 01:59:58 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '130' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1638,41 +1677,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:45 GMT + - Thu, 20 May 2021 01:59:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -1692,18 +1733,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1711,11 +1752,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:46 GMT + - Thu, 20 May 2021 02:00:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1725,7 +1766,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '128' x-powered-by: - ASP.NET status: @@ -1745,18 +1786,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1764,11 +1805,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:47 GMT + - Thu, 20 May 2021 02:00:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1778,7 +1819,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '127' x-powered-by: - ASP.NET status: @@ -1798,18 +1839,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1817,11 +1858,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:48 GMT + - Thu, 20 May 2021 02:00:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1831,7 +1872,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '126' x-powered-by: - ASP.NET status: @@ -1851,18 +1892,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1870,11 +1911,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:50 GMT + - Thu, 20 May 2021 02:00:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1884,7 +1925,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '125' x-powered-by: - ASP.NET status: @@ -1904,18 +1945,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1923,11 +1964,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:52 GMT + - Thu, 20 May 2021 02:00:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1937,7 +1978,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '124' x-powered-by: - ASP.NET status: @@ -1957,18 +1998,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1976,11 +2017,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:54 GMT + - Thu, 20 May 2021 02:00:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -1990,7 +2031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '123' x-powered-by: - ASP.NET status: @@ -2010,18 +2051,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2029,11 +2070,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:55 GMT + - Thu, 20 May 2021 02:00:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -2043,7 +2084,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '122' x-powered-by: - ASP.NET status: @@ -2063,18 +2104,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2082,11 +2123,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:57 GMT + - Thu, 20 May 2021 02:00:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -2096,7 +2137,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '121' x-powered-by: - ASP.NET status: @@ -2116,18 +2157,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -2135,11 +2176,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:58 GMT + - Thu, 20 May 2021 02:00:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 pragma: - no-cache server: @@ -2149,7 +2190,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '120' x-powered-by: - ASP.NET status: @@ -2169,143 +2210,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/4eaac85c-fdab-4d98-91d0-39fbefef1453?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '790' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:59 GMT + - Thu, 20 May 2021 02:00:11 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '119' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/94d375c8-51dc-433a-9190-b132447d5b7f?api-version=2020-10-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-type: - - application/json; charset=utf-8 - date: - - Tue, 20 Apr 2021 08:02:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -2320,24 +2263,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2","name":"azurefileshare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '1039' + - '12' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:03 GMT + - Thu, 20 May 2021 02:00:12 GMT expires: - '-1' pragma: @@ -2360,9 +2303,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", - "protectedItemType": "AzureFileShareProtectedItem"}}' + body: null headers: Accept: - application/json @@ -2373,34 +2314,32 @@ interactions: Connection: - keep-alive Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3Bb00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2?api-version=2020-10-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2/operationsStatus/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6a9e90cd-bd0e-4b8d-adbd-ce062a5fec72?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:02:03 GMT + - Thu, 20 May 2021 02:00:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2/operationResults/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6a9e90cd-bd0e-4b8d-adbd-ce062a5fec72?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -2408,7 +2347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -2428,1582 +2367,37 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6a9e90cd-bd0e-4b8d-adbd-ce062a5fec72?api-version=2020-10-01 response: body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:30 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:37 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --storage-account --azure-file-share -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 - response: - body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:02:43 GMT + - Thu, 20 May 2021 02:00:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '134' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -4018,24 +2412,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"InProgress","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd","name":"azurefileshare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1039' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:44 GMT + - Thu, 20 May 2021 02:00:53 GMT expires: - '-1' pragma: @@ -4051,7 +2445,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '149' x-powered-by: - ASP.NET status: @@ -4071,24 +2465,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/931cfce9-d70e-4787-9241-db9faa960437?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"id":"931cfce9-d70e-4787-9241-db9faa960437","name":"931cfce9-d70e-4787-9241-db9faa960437","status":"Succeeded","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"2021-04-20T08:02:03.9127241Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"aa8f2e5f-1fc2-40f1-a424-815d6b861036"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '304' + - '740' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:45 GMT + - Thu, 20 May 2021 02:00:54 GMT expires: - '-1' pragma: @@ -4104,14 +2498,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -4121,51 +2517,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/aa8f2e5f-1fc2-40f1-a424-815d6b861036?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3Bcb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/aa8f2e5f-1fc2-40f1-a424-815d6b861036","name":"aa8f2e5f-1fc2-40f1-a424-815d6b861036","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.9263042S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-04-20T08:02:03.9127241Z","endTime":"2021-04-20T08:02:45.8390283Z","activityId":"950a8fe4-a1ae-11eb-b459-2cf05d45d149"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd/operationsStatus/e8d05825-f3f4-4514-bb41-6b7b9ad8f7c4?api-version=2020-10-01 cache-control: - no-cache content-length: - - '946' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:02:46 GMT + - Thu, 20 May 2021 02:00:55 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd/operationResults/e8d05825-f3f4-4514-bb41-6b7b9ad8f7c4?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4174,30 +2567,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c --backup-management-type + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e8d05825-f3f4-4514-bb41-6b7b9ad8f7c4?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2","name":"AzureFileShare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"e8d05825-f3f4-4514-bb41-6b7b9ad8f7c4","name":"e8d05825-f3f4-4514-bb41-6b7b9ad8f7c4","status":"InProgress","startTime":"2021-05-20T02:00:55.767132Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1352' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:46 GMT + - Thu, 20 May 2021 02:00:55 GMT expires: - '-1' pragma: @@ -4227,106 +2620,99 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e8d05825-f3f4-4514-bb41-6b7b9ad8f7c4?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2","name":"AzureFileShare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive + a response from ''Microsoft.RecoveryServices'' within the specified time period."}}' headers: cache-control: - no-cache + connection: + - close content-length: - - '1352' + - '154' content-type: - - application/json + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:02:47 GMT + - Thu, 20 May 2021 02:01:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - service status: - code: 200 - message: OK + code: 504 + message: Gateway Timeout - request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003", - "policyId": "", "protectedItemType": "AzureFileShareProtectedItem", "protectionState": - "ProtectionStopped"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '304' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bb00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e8d05825-f3f4-4514-bb41-6b7b9ad8f7c4?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"e8d05825-f3f4-4514-bb41-6b7b9ad8f7c4","name":"e8d05825-f3f4-4514-bb41-6b7b9ad8f7c4","status":"Succeeded","startTime":"2021-05-20T02:00:55.767132Z","endTime":"2021-05-20T02:00:55.767132Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"410b54c9-5a08-45c5-bbed-a7882f626a8a"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2/operationsStatus/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '302' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:48 GMT + - Thu, 20 May 2021 02:01:59 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2/operationResults/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4335,36 +2721,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/410b54c9-5a08-45c5-bbed-a7882f626a8a?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/410b54c9-5a08-45c5-bbed-a7882f626a8a","name":"410b54c9-5a08-45c5-bbed-a7882f626a8a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.0945368S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-20T02:00:55.767132Z","endTime":"2021-05-20T02:01:37.8616688Z","activityId":"e2b54f89-b90e-11eb-b44c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '187' + - '945' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:48 GMT + - Thu, 20 May 2021 02:02: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: @@ -4388,30 +2777,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --yes + - -g -v -c --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd","name":"AzureFileShare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '1352' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:49 GMT + - Thu, 20 May 2021 02:02:00 GMT expires: - '-1' pragma: @@ -4427,7 +2816,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -4447,24 +2836,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd","name":"AzureFileShare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '187' + - '1352' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:51 GMT + - Thu, 20 May 2021 02:02:00 GMT expires: - '-1' pragma: @@ -4480,14 +2869,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003", + "policyId": "", "protectedItemType": "AzureFileShareProtectedItem", "protectionState": + "ProtectionStopped"}}' headers: Accept: - application/json @@ -4497,48 +2888,48 @@ interactions: - backup protection disable Connection: - keep-alive + Content-Length: + - '304' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bcb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd/operationsStatus/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:02:52 GMT + - Thu, 20 May 2021 02:02:01 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd/operationResults/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + x-ms-ratelimit-remaining-subscription-writes: + - '1195' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4553,24 +2944,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:53 GMT + - Thu, 20 May 2021 02:02:02 GMT expires: - '-1' pragma: @@ -4586,7 +2977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: @@ -4606,24 +2997,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:54 GMT + - Thu, 20 May 2021 02:02:04 GMT expires: - '-1' pragma: @@ -4639,7 +3030,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '148' x-powered-by: - ASP.NET status: @@ -4659,24 +3050,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:55 GMT + - Thu, 20 May 2021 02:02:05 GMT expires: - '-1' pragma: @@ -4692,7 +3083,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '147' x-powered-by: - ASP.NET status: @@ -4712,24 +3103,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:57 GMT + - Thu, 20 May 2021 02:02:06 GMT expires: - '-1' pragma: @@ -4745,7 +3136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '146' x-powered-by: - ASP.NET status: @@ -4765,24 +3156,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:58 GMT + - Thu, 20 May 2021 02:02:07 GMT expires: - '-1' pragma: @@ -4798,7 +3189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '145' x-powered-by: - ASP.NET status: @@ -4818,24 +3209,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:59 GMT + - Thu, 20 May 2021 02:02:09 GMT expires: - '-1' pragma: @@ -4851,7 +3242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '144' x-powered-by: - ASP.NET status: @@ -4871,24 +3262,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:01 GMT + - Thu, 20 May 2021 02:02:10 GMT expires: - '-1' pragma: @@ -4904,7 +3295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '143' x-powered-by: - ASP.NET status: @@ -4924,24 +3315,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:03 GMT + - Thu, 20 May 2021 02:02:11 GMT expires: - '-1' pragma: @@ -4957,7 +3348,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '142' x-powered-by: - ASP.NET status: @@ -4977,24 +3368,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:05 GMT + - Thu, 20 May 2021 02:02:12 GMT expires: - '-1' pragma: @@ -5010,7 +3401,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '141' x-powered-by: - ASP.NET status: @@ -5030,24 +3421,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:06 GMT + - Thu, 20 May 2021 02:02:13 GMT expires: - '-1' pragma: @@ -5063,7 +3454,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '140' x-powered-by: - ASP.NET status: @@ -5083,24 +3474,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:08 GMT + - Thu, 20 May 2021 02:02:15 GMT expires: - '-1' pragma: @@ -5116,7 +3507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '139' x-powered-by: - ASP.NET status: @@ -5136,24 +3527,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"InProgress","startTime":"2021-04-20T08:02:48.729209Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:09 GMT + - Thu, 20 May 2021 02:02:16 GMT expires: - '-1' pragma: @@ -5169,7 +3560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '138' x-powered-by: - ASP.NET status: @@ -5189,24 +3580,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1c538b4f-6c4b-41ba-b038-ac94a924e257?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"1c538b4f-6c4b-41ba-b038-ac94a924e257","name":"1c538b4f-6c4b-41ba-b038-ac94a924e257","status":"Succeeded","startTime":"2021-04-20T08:02:48.729209Z","endTime":"2021-04-20T08:02:48.729209Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3fa61683-a157-46d6-bc26-b9a151de7b41"}}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '302' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:10 GMT + - Thu, 20 May 2021 02:02:17 GMT expires: - '-1' pragma: @@ -5222,7 +3613,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '137' x-powered-by: - ASP.NET status: @@ -5242,32 +3633,30 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3fa61683-a157-46d6-bc26-b9a151de7b41?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3fa61683-a157-46d6-bc26-b9a151de7b41","name":"3fa61683-a157-46d6-bc26-b9a151de7b41","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT20.9772699S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DisableBackup","status":"Completed","startTime":"2021-04-20T08:02:48.729209Z","endTime":"2021-04-20T08:03:09.7064789Z","activityId":"cb7c78b0-a1ae-11eb-ac39-2cf05d45d149"}}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '902' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:10 GMT + - Thu, 20 May 2021 02:02:19 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5277,7 +3666,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '136' x-powered-by: - ASP.NET status: @@ -5291,30 +3680,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -n --backup-management-type + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2","name":"AzureFileShare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1150' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:11 GMT + - Thu, 20 May 2021 02:02:20 GMT expires: - '-1' pragma: @@ -5330,7 +3719,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '135' x-powered-by: - ASP.NET status: @@ -5348,26 +3737,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2","name":"AzureFileShare;b00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1150' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:11 GMT + - Thu, 20 May 2021 02:02:21 GMT expires: - '-1' pragma: @@ -5383,7 +3772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '134' x-powered-by: - ASP.NET status: @@ -5400,46 +3789,48 @@ interactions: - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bb00d2f1af8e52350d45444311a4b1b47e553431d87c35badfcc14a52cdfbfbd2?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"InProgress","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:12 GMT + - Thu, 20 May 2021 02:02:22 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5452,26 +3843,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/0725c24e-3bf0-4158-88df-fc18265bbaa8?api-version=2020-10-01 response: body: - string: '{"id":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","name":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","status":"InProgress","startTime":"2021-04-20T08:03:12.8981047Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"0725c24e-3bf0-4158-88df-fc18265bbaa8","name":"0725c24e-3bf0-4158-88df-fc18265bbaa8","status":"Succeeded","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"2021-05-20T02:02:02.3403008Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"cf7a9d7a-0d3e-4b6b-94fd-650e566f242b"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:13 GMT + - Thu, 20 May 2021 02:02:24 GMT expires: - '-1' pragma: @@ -5487,7 +3878,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '132' x-powered-by: - ASP.NET status: @@ -5505,32 +3896,34 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i --backup-management-type --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/cf7a9d7a-0d3e-4b6b-94fd-650e566f242b?api-version=2020-10-01 response: body: - string: '{"id":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","name":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","status":"InProgress","startTime":"2021-04-20T08:03:12.8981047Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/cf7a9d7a-0d3e-4b6b-94fd-650e566f242b","name":"cf7a9d7a-0d3e-4b6b-94fd-650e566f242b","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.1984185S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DisableBackup","status":"Completed","startTime":"2021-05-20T02:02:02.3403008Z","endTime":"2021-05-20T02:02:23.5387193Z","activityId":"5d90b1f7-b90f-11eb-afb9-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '188' + - '903' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:14 GMT + - Thu, 20 May 2021 02:02:24 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5540,7 +3933,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -5554,30 +3947,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","name":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","status":"InProgress","startTime":"2021-04-20T08:03:12.8981047Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd","name":"AzureFileShare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1150' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:16 GMT + - Thu, 20 May 2021 02:02:25 GMT expires: - '-1' pragma: @@ -5593,7 +3986,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -5613,24 +4006,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","name":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","status":"InProgress","startTime":"2021-04-20T08:03:12.8981047Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd","name":"AzureFileShare;cb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1150' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:17 GMT + - Thu, 20 May 2021 02:02:25 GMT expires: - '-1' pragma: @@ -5646,7 +4039,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: @@ -5663,48 +4056,46 @@ interactions: - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bcb2ac46e6ad5a0455df6c34805bbaa7a311ea9cd8d5b51e3c49312631394bdbd?api-version=2020-10-01 response: body: - string: '{"id":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","name":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","status":"InProgress","startTime":"2021-04-20T08:03:12.8981047Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:19 GMT + - Thu, 20 May 2021 02:02:26 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5719,15 +4110,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 response: body: - string: '{"id":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","name":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","status":"InProgress","startTime":"2021-04-20T08:03:12.8981047Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a25be26-c150-4d18-a240-9f3fc8a852c2","name":"4a25be26-c150-4d18-a240-9f3fc8a852c2","status":"InProgress","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5736,7 +4127,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:20 GMT + - Thu, 20 May 2021 02:02:26 GMT expires: - '-1' pragma: @@ -5752,7 +4143,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '149' x-powered-by: - ASP.NET status: @@ -5772,15 +4163,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 response: body: - string: '{"id":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","name":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","status":"InProgress","startTime":"2021-04-20T08:03:12.8981047Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a25be26-c150-4d18-a240-9f3fc8a852c2","name":"4a25be26-c150-4d18-a240-9f3fc8a852c2","status":"InProgress","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5789,7 +4180,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:21 GMT + - Thu, 20 May 2021 02:02:27 GMT expires: - '-1' pragma: @@ -5805,7 +4196,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '148' x-powered-by: - ASP.NET status: @@ -5825,15 +4216,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 response: body: - string: '{"id":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","name":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","status":"InProgress","startTime":"2021-04-20T08:03:12.8981047Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a25be26-c150-4d18-a240-9f3fc8a852c2","name":"4a25be26-c150-4d18-a240-9f3fc8a852c2","status":"InProgress","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5842,7 +4233,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:22 GMT + - Thu, 20 May 2021 02:02:29 GMT expires: - '-1' pragma: @@ -5858,7 +4249,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '147' x-powered-by: - ASP.NET status: @@ -5878,15 +4269,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 response: body: - string: '{"id":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","name":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","status":"InProgress","startTime":"2021-04-20T08:03:12.8981047Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4a25be26-c150-4d18-a240-9f3fc8a852c2","name":"4a25be26-c150-4d18-a240-9f3fc8a852c2","status":"InProgress","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5895,7 +4286,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:24 GMT + - Thu, 20 May 2021 02:02:30 GMT expires: - '-1' pragma: @@ -5911,7 +4302,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '146' x-powered-by: - ASP.NET status: @@ -5931,24 +4322,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d2a15ce0-19f2-4979-b0de-eb5cb4865a92?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 response: body: - string: '{"id":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","name":"d2a15ce0-19f2-4979-b0de-eb5cb4865a92","status":"Succeeded","startTime":"2021-04-20T08:03:12.8981047Z","endTime":"2021-04-20T08:03:12.8981047Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"eaf3f43b-43d9-443a-a755-83cc390eda9a"}}' + string: '{"id":"4a25be26-c150-4d18-a240-9f3fc8a852c2","name":"4a25be26-c150-4d18-a240-9f3fc8a852c2","status":"InProgress","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:25 GMT + - Thu, 20 May 2021 02:02:31 GMT expires: - '-1' pragma: @@ -5964,7 +4355,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '145' x-powered-by: - ASP.NET status: @@ -5984,32 +4375,30 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/eaf3f43b-43d9-443a-a755-83cc390eda9a?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/eaf3f43b-43d9-443a-a755-83cc390eda9a","name":"eaf3f43b-43d9-443a-a755-83cc390eda9a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT12.815722S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-04-20T08:03:12.8981047Z","endTime":"2021-04-20T08:03:25.7138267Z","activityId":"d9f53878-a1ae-11eb-b1c3-2cf05d45d149"}}' + string: '{"id":"4a25be26-c150-4d18-a240-9f3fc8a852c2","name":"4a25be26-c150-4d18-a240-9f3fc8a852c2","status":"InProgress","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '905' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:26 GMT + - Thu, 20 May 2021 02:02: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: @@ -6019,7 +4408,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -6033,30 +4422,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{"id":"4a25be26-c150-4d18-a240-9f3fc8a852c2","name":"4a25be26-c150-4d18-a240-9f3fc8a852c2","status":"InProgress","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '12' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:26 GMT + - Thu, 20 May 2021 02:02:33 GMT expires: - '-1' pragma: @@ -6072,7 +4461,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -6086,30 +4475,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '{"id":"4a25be26-c150-4d18-a240-9f3fc8a852c2","name":"4a25be26-c150-4d18-a240-9f3fc8a852c2","status":"InProgress","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '880' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:26 GMT + - Thu, 20 May 2021 02:02:36 GMT expires: - '-1' pragma: @@ -6125,7 +4514,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '142' x-powered-by: - ASP.NET status: @@ -6139,49 +4528,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"4a25be26-c150-4d18-a240-9f3fc8a852c2","name":"4a25be26-c150-4d18-a240-9f3fc8a852c2","status":"InProgress","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:28 GMT + - Thu, 20 May 2021 02:02:37 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6190,51 +4581,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"4a25be26-c150-4d18-a240-9f3fc8a852c2","name":"4a25be26-c150-4d18-a240-9f3fc8a852c2","status":"InProgress","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:28 GMT + - Thu, 20 May 2021 02:02:40 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '140' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6243,51 +4634,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4a25be26-c150-4d18-a240-9f3fc8a852c2?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"4a25be26-c150-4d18-a240-9f3fc8a852c2","name":"4a25be26-c150-4d18-a240-9f3fc8a852c2","status":"Succeeded","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"2021-05-20T02:02:26.6996267Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c2a4f525-7941-44c8-be32-352bd1b50d4d"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:30 GMT + - Thu, 20 May 2021 02:03:20 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '139' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6296,51 +4687,53 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c2a4f525-7941-44c8-be32-352bd1b50d4d?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/c2a4f525-7941-44c8-be32-352bd1b50d4d","name":"c2a4f525-7941-44c8-be32-352bd1b50d4d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.2181359S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-20T02:02:26.6996267Z","endTime":"2021-05-20T02:02:47.9177626Z","activityId":"6c220954-b90f-11eb-ac22-b07b250bf939"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '906' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:31 GMT + - Thu, 20 May 2021 02:03:20 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6349,51 +4742,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{}' + string: '{"value":[]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '12' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:33 GMT + - Thu, 20 May 2021 02:03:20 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6408,45 +4801,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '880' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:34 GMT + - Thu, 20 May 2021 02:03:21 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -6458,43 +4851,41 @@ interactions: - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 response: body: - string: '{}' + string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:35 GMT + - Thu, 20 May 2021 02:03:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: @@ -6514,18 +4905,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6533,11 +4924,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:36 GMT + - Thu, 20 May 2021 02:03:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 pragma: - no-cache server: @@ -6547,7 +4938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '37' x-powered-by: - ASP.NET status: @@ -6567,18 +4958,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6586,11 +4977,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:38 GMT + - Thu, 20 May 2021 02:03:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 pragma: - no-cache server: @@ -6600,7 +4991,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '36' x-powered-by: - ASP.NET status: @@ -6620,18 +5011,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6639,11 +5030,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:39 GMT + - Thu, 20 May 2021 02:03:47 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 pragma: - no-cache server: @@ -6653,7 +5044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '35' x-powered-by: - ASP.NET status: @@ -6673,18 +5064,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6692,11 +5083,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:40 GMT + - Thu, 20 May 2021 02:03:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 pragma: - no-cache server: @@ -6706,7 +5097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '34' x-powered-by: - ASP.NET status: @@ -6726,18 +5117,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6745,11 +5136,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:42 GMT + - Thu, 20 May 2021 02:03:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 pragma: - no-cache server: @@ -6759,7 +5150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '33' x-powered-by: - ASP.NET status: @@ -6779,18 +5170,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6798,11 +5189,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:43 GMT + - Thu, 20 May 2021 02:03:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 pragma: - no-cache server: @@ -6812,7 +5203,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '32' x-powered-by: - ASP.NET status: @@ -6832,18 +5223,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6851,11 +5242,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:44 GMT + - Thu, 20 May 2021 02:03:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 pragma: - no-cache server: @@ -6865,7 +5256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '31' x-powered-by: - ASP.NET status: @@ -6885,18 +5276,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6904,11 +5295,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:46 GMT + - Thu, 20 May 2021 02:04:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 pragma: - no-cache server: @@ -6918,7 +5309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '30' x-powered-by: - ASP.NET status: @@ -6938,18 +5329,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6957,11 +5348,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:47 GMT + - Thu, 20 May 2021 02:04:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 pragma: - no-cache server: @@ -6971,7 +5362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '29' x-powered-by: - ASP.NET status: @@ -6991,18 +5382,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7010,11 +5401,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:48 GMT + - Thu, 20 May 2021 02:04:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 pragma: - no-cache server: @@ -7024,7 +5415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '28' x-powered-by: - ASP.NET status: @@ -7044,18 +5435,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7063,11 +5454,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:49 GMT + - Thu, 20 May 2021 02:04:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 pragma: - no-cache server: @@ -7077,7 +5468,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '27' x-powered-by: - ASP.NET status: @@ -7097,12 +5488,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c4a3e156-c14d-4226-a7bf-e54376fb50f2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/5c06efd9-5c16-4120-ab41-1c393d1a9b76?api-version=2020-10-01 response: body: string: '' @@ -7112,7 +5503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:03:51 GMT + - Thu, 20 May 2021 02:04:05 GMT expires: - '-1' pragma: @@ -7122,7 +5513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '26' x-powered-by: - ASP.NET status: @@ -7142,8 +5533,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -7159,7 +5550,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:31 GMT + - Thu, 20 May 2021 02:05:46 GMT expires: - '-1' pragma: @@ -7175,7 +5566,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -7185,7 +5576,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -7197,10 +5588,7 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: @@ -7212,7 +5600,7 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:05:33 GMT + - Thu, 20 May 2021 02:05:48 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_restore.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_restore.yaml index 475ed33071e..9e83a08d66a 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_restore.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_restore.yaml @@ -13,19 +13,16 @@ interactions: Content-Length: - '76' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --location User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-04-20T08%3A01%3A29.0297153Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T01%3A58%3A49.8422782Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -34,7 +31,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:28 GMT + - Thu, 20 May 2021 01:58:49 GMT expires: - '-1' pragma: @@ -66,12 +63,12 @@ interactions: ParameterSetName: - --resource-group --account-name --query User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:01:30.2582001Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:01:30.2582001Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-05-20T01:58:51.2543910Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T01:58:51.2543910Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -80,7 +77,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:51 GMT + - Thu, 20 May 2021 01:59:13 GMT expires: - '-1' pragma: @@ -116,12 +113,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:01:30.2582001Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:01:30.2582001Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-05-20T01:58:51.2543910Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T01:58:51.2543910Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -130,7 +127,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:52 GMT + - Thu, 20 May 2021 01:59:13 GMT expires: - '-1' pragma: @@ -158,9 +155,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 x-ms-date: - - Tue, 20 Apr 2021 08:01:52 GMT + - Thu, 20 May 2021 01:59:13 GMT x-ms-share-quota: - '1' x-ms-version: @@ -174,11 +171,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:52 GMT + - Thu, 20 May 2021 01:59:13 GMT etag: - - '"0x8D903D28F34C8BF"' + - '"0x8D91B32DE6797D6"' last-modified: - - Tue, 20 Apr 2021 08:01:53 GMT + - Thu, 20 May 2021 01:59:14 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -194,11 +191,11 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 x-ms-content-length: - '0' x-ms-date: - - Tue, 20 Apr 2021 08:01:53 GMT + - Thu, 20 May 2021 01:59:14 GMT x-ms-type: - file x-ms-version: @@ -212,11 +209,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:53 GMT + - Thu, 20 May 2021 01:59:14 GMT etag: - - '"0x8D903D28F7BE0B7"' + - '"0x8D91B32DEBFA80B"' last-modified: - - Tue, 20 Apr 2021 08:01:53 GMT + - Thu, 20 May 2021 01:59:14 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -234,11 +231,11 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 x-ms-content-length: - '0' x-ms-date: - - Tue, 20 Apr 2021 08:01:53 GMT + - Thu, 20 May 2021 01:59:15 GMT x-ms-type: - file x-ms-version: @@ -252,11 +249,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:52 GMT + - Thu, 20 May 2021 01:59:15 GMT etag: - - '"0x8D903D28FB2B219"' + - '"0x8D91B32DEFFC9C9"' last-modified: - - Tue, 20 Apr 2021 08:01:53 GMT + - Thu, 20 May 2021 01:59:15 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: @@ -280,15 +277,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -297,7 +294,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:55 GMT + - Thu, 20 May 2021 01:59:43 GMT expires: - '-1' pragma: @@ -322,9 +319,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-04-20T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-05-20T11:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-04-20T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-05-20T11:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -342,15 +339,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","name":"clitest-item000008","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","name":"clitest-item000008","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -359,7 +356,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:57 GMT + - Thu, 20 May 2021 01:59:44 GMT expires: - '-1' pragma: @@ -375,7 +372,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -395,8 +392,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -412,7 +409,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:57 GMT + - Thu, 20 May 2021 02:00:19 GMT expires: - '-1' pragma: @@ -428,7 +425,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -448,24 +445,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: cache-control: - no-cache content-length: - - '11969' + - '12289' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:58 GMT + - Thu, 20 May 2021 02:00:20 GMT expires: - '-1' pragma: @@ -481,7 +478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -506,8 +503,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT @@ -517,7 +514,7 @@ interactions: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -525,11 +522,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:01 GMT + - Thu, 20 May 2021 02:00:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -539,7 +536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -559,18 +556,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -578,11 +575,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:02 GMT + - Thu, 20 May 2021 02:00:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -612,18 +609,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -631,11 +628,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:03 GMT + - Thu, 20 May 2021 02:00:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -665,18 +662,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -684,11 +681,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:04 GMT + - Thu, 20 May 2021 02:00:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -718,18 +715,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -737,11 +734,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:06 GMT + - Thu, 20 May 2021 02:00:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -771,18 +768,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -790,11 +787,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:07 GMT + - Thu, 20 May 2021 02:00:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -824,18 +821,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -843,11 +840,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:08 GMT + - Thu, 20 May 2021 02:00:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -877,18 +874,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -896,11 +893,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:10 GMT + - Thu, 20 May 2021 02:00:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -930,18 +927,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -949,11 +946,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:11 GMT + - Thu, 20 May 2021 02:00:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -983,36 +980,36 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/959dfe45-e3ef-41d3-948b-1ed5806c0a05?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:12 GMT + - Thu, 20 May 2021 02:00:30 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -1020,8 +1017,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1036,45 +1033,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","name":"clitest-item000008","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:12 GMT + - Thu, 20 May 2021 02:00:31 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1089,45 +1086,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:13 GMT + - Thu, 20 May 2021 02:00:33 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '139' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1139,41 +1136,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:14 GMT + - Thu, 20 May 2021 02:00:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: @@ -1193,18 +1192,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1212,11 +1211,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:14 GMT + - Thu, 20 May 2021 02:00:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -1226,7 +1225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '137' x-powered-by: - ASP.NET status: @@ -1246,18 +1245,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1265,11 +1264,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:16 GMT + - Thu, 20 May 2021 02:00:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -1279,7 +1278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '136' x-powered-by: - ASP.NET status: @@ -1299,18 +1298,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1318,11 +1317,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:17 GMT + - Thu, 20 May 2021 02:00:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -1332,7 +1331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '135' x-powered-by: - ASP.NET status: @@ -1352,18 +1351,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1371,11 +1370,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:18 GMT + - Thu, 20 May 2021 02:00:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -1385,7 +1384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '134' x-powered-by: - ASP.NET status: @@ -1405,18 +1404,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1424,11 +1423,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:19 GMT + - Thu, 20 May 2021 02:00:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: @@ -1438,7 +1437,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '133' x-powered-by: - ASP.NET status: @@ -1458,37 +1457,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1d19926a-ee2a-49d2-9ee0-80b25660a2db?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:02:20 GMT + - Thu, 20 May 2021 02:00:41 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '132' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -1503,49 +1510,47 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","name":"azurefileshare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000007","protectionState":"NotProtected"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1039' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:20 GMT + - Thu, 20 May 2021 02:00:43 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '131' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008", - "protectedItemType": "AzureFileShareProtectedItem"}}' + body: null headers: Accept: - application/json @@ -1555,43 +1560,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationsStatus/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:22 GMT + - Thu, 20 May 2021 02:00:44 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationResults/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '130' x-powered-by: - ASP.NET status: @@ -1611,45 +1616,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:22 GMT + - Thu, 20 May 2021 02:00:45 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '129' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1664,45 +1669,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:23 GMT + - Thu, 20 May 2021 02:00:46 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '128' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1717,45 +1722,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:25 GMT + - Thu, 20 May 2021 02:00:48 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '127' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1770,45 +1775,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:26 GMT + - Thu, 20 May 2021 02:00:49 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '126' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1823,45 +1828,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:27 GMT + - Thu, 20 May 2021 02:00:51 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '125' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1876,45 +1881,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:28 GMT + - Thu, 20 May 2021 02:00:52 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '124' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1929,45 +1934,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:30 GMT + - Thu, 20 May 2021 02:00:53 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '123' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1982,45 +1987,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:31 GMT + - Thu, 20 May 2021 02:00:54 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '122' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2035,45 +2040,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:32 GMT + - Thu, 20 May 2021 02:00:58 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '121' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2088,45 +2093,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:34 GMT + - Thu, 20 May 2021 02:01:01 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '120' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2141,45 +2146,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:35 GMT + - Thu, 20 May 2021 02:01:02 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '119' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2194,45 +2199,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:36 GMT + - Thu, 20 May 2021 02:01:03 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '118' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2247,45 +2252,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:37 GMT + - Thu, 20 May 2021 02:01:04 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '117' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2300,45 +2305,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:39 GMT + - Thu, 20 May 2021 02:01:05 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '116' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2353,45 +2358,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:40 GMT + - Thu, 20 May 2021 02:01:07 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '115' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2406,45 +2411,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:42 GMT + - Thu, 20 May 2021 02:01:08 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '114' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2459,45 +2464,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:43 GMT + - Thu, 20 May 2021 02:01:09 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '113' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2512,45 +2517,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:44 GMT + - Thu, 20 May 2021 02:01:10 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '112' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2565,45 +2570,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:46 GMT + - Thu, 20 May 2021 02:01:12 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '111' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2618,45 +2623,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:47 GMT + - Thu, 20 May 2021 02:01:13 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '110' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2671,45 +2676,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:48 GMT + - Thu, 20 May 2021 02:01:14 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '109' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2724,45 +2729,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:49 GMT + - Thu, 20 May 2021 02:01:15 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '108' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2777,45 +2782,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:50 GMT + - Thu, 20 May 2021 02:01:17 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '107' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2830,45 +2835,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:52 GMT + - Thu, 20 May 2021 02:01:18 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '106' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2883,45 +2888,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:53 GMT + - Thu, 20 May 2021 02:01:19 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '105' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2936,45 +2941,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:54 GMT + - Thu, 20 May 2021 02:01:20 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '104' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2989,45 +2994,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:55 GMT + - Thu, 20 May 2021 02:01:22 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '103' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3042,45 +3047,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:57 GMT + - Thu, 20 May 2021 02:01:23 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '102' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3095,45 +3100,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:58 GMT + - Thu, 20 May 2021 02:01:24 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '101' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3148,45 +3153,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:59 GMT + - Thu, 20 May 2021 02:01:25 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '100' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3201,45 +3206,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:00 GMT + - Thu, 20 May 2021 02:01:27 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '99' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3254,24 +3259,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/49da037c-70d6-4c76-b17b-1dff4ec8de77?api-version=2020-10-01 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' headers: cache-control: - no-cache content-length: - - '188' + - '790' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:02 GMT + - Thu, 20 May 2021 02:01:28 GMT expires: - '-1' pragma: @@ -3287,7 +3292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '98' x-powered-by: - ASP.NET status: @@ -3307,24 +3312,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"InProgress","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:03 GMT + - Thu, 20 May 2021 02:01:28 GMT expires: - '-1' pragma: @@ -3340,7 +3345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '149' x-powered-by: - ASP.NET status: @@ -3357,48 +3362,91 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/25837989-fb4e-4f0a-90c3-3bed634315a5?api-version=2020-10-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"25837989-fb4e-4f0a-90c3-3bed634315a5","name":"25837989-fb4e-4f0a-90c3-3bed634315a5","status":"Succeeded","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"2021-04-20T08:02:22.3543499Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"282a4dd3-84d0-453a-ae10-7cb36c9cdd74"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/1ec9952f-7f36-4802-afe5-38ff9a6a0815?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '304' - content-type: + - '0' + date: + - Thu, 20 May 2021 02:02:14 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/1ec9952f-7f36-4802-afe5-38ff9a6a0815?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/1ec9952f-7f36-4802-afe5-38ff9a6a0815?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-type: + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:03:04 GMT + - Thu, 20 May 2021 02:02:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '83' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -3413,33 +3461,30 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/282a4dd3-84d0-453a-ae10-7cb36c9cdd74?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/282a4dd3-84d0-453a-ae10-7cb36c9cdd74","name":"282a4dd3-84d0-453a-ae10-7cb36c9cdd74","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.7541156S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000007","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000008"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-04-20T08:02:22.3543499Z","endTime":"2021-04-20T08:03:05.1084655Z","activityId":"ae0d6ce2-a1ae-11eb-8685-2cf05d45d149"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","name":"azurefileshare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000007","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '946' + - '1039' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:05 GMT + - Thu, 20 May 2021 02:02: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: @@ -3463,30 +3508,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","name":"AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","name":"clitest-item000008","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '1352' + - '740' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:06 GMT + - Thu, 20 May 2021 02:02:17 GMT expires: - '-1' pragma: @@ -3502,53 +3547,54 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-05-20T00:00:00.000Z"}}' + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-azurefileshare Connection: - keep-alive Content-Length: - - '121' + - '460' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/backup?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationsStatus/c48c28c9-7485-4e50-90a9-e49738917ec7?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationsStatus/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:03:06 GMT + - Thu, 20 May 2021 02:02:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationResults/c48c28c9-7485-4e50-90a9-e49738917ec7?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationResults/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -3556,7 +3602,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -3570,30 +3616,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c48c28c9-7485-4e50-90a9-e49738917ec7?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"c48c28c9-7485-4e50-90a9-e49738917ec7","name":"c48c28c9-7485-4e50-90a9-e49738917ec7","status":"Succeeded","startTime":"2021-04-20T08:03:07.4102011Z","endTime":"2021-04-20T08:03:07.4102011Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0cd89f14-3f32-4883-8fc6-39cc576dd517"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:07 GMT + - Thu, 20 May 2021 02:02:18 GMT expires: - '-1' pragma: @@ -3623,39 +3669,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0cd89f14-3f32-4883-8fc6-39cc576dd517?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0cd89f14-3f32-4883-8fc6-39cc576dd517","name":"0cd89f14-3f32-4883-8fc6-39cc576dd517","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.1454109S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:03:07.4102011Z","activityId":"d6b5cdcc-a1ae-11eb-bf53-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '937' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:08 GMT + - Thu, 20 May 2021 02:02:19 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3679,39 +3722,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0cd89f14-3f32-4883-8fc6-39cc576dd517?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0cd89f14-3f32-4883-8fc6-39cc576dd517","name":"0cd89f14-3f32-4883-8fc6-39cc576dd517","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.7075455S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:03:07.4102011Z","activityId":"d6b5cdcc-a1ae-11eb-bf53-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '937' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:09 GMT + - Thu, 20 May 2021 02:02:21 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3721,7 +3761,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -3735,39 +3775,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0cd89f14-3f32-4883-8fc6-39cc576dd517?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0cd89f14-3f32-4883-8fc6-39cc576dd517","name":"0cd89f14-3f32-4883-8fc6-39cc576dd517","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.9527812S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:03:07.4102011Z","activityId":"d6b5cdcc-a1ae-11eb-bf53-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '937' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:09 GMT + - Thu, 20 May 2021 02:02: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: @@ -3777,7 +3814,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -3791,39 +3828,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0cd89f14-3f32-4883-8fc6-39cc576dd517?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0cd89f14-3f32-4883-8fc6-39cc576dd517","name":"0cd89f14-3f32-4883-8fc6-39cc576dd517","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.3535125S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-04-20T08:03:07.4102011Z","endTime":"2021-04-20T08:03:09.7637136Z","activityId":"d6b5cdcc-a1ae-11eb-bf53-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '976' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:39 GMT + - Thu, 20 May 2021 02:02: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: @@ -3833,7 +3867,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '145' x-powered-by: - ASP.NET status: @@ -3847,35 +3881,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - storage account show-connection-string + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n -g + - -g -v --azure-file-share --storage-account -p User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:01:30.2582001Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:01:30.2582001Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '380' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:09 GMT + - Thu, 20 May 2021 02:02:24 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3885,78 +3920,44 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '144' + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: body: null headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' + ParameterSetName: + - -g -v --azure-file-share --storage-account -p User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 - x-ms-date: - - Tue, 20 Apr 2021 08:04:10 GMT - x-ms-share-quota: - - '1' - x-ms-version: - - '2018-11-09' - method: PUT - uri: https://clitest000003.file.core.windows.net/clitest-item000011?restype=share - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Tue, 20 Apr 2021 08:04:10 GMT - etag: - - '"0x8D903D2E14C24CB"' - last-modified: - - Tue, 20 Apr 2021 08:04:10 GMT - server: - - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2018-11-09' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup recoverypoint list - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -i --backup-management-type --query - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","name":"AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:07.4102011Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1550' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:10 GMT + - Thu, 20 May 2021 02:02:26 GMT expires: - '-1' pragma: @@ -3972,7 +3973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: @@ -3986,30 +3987,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --query + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/recoveryPoints?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/recoveryPoints/2261223967537702818","name":"2261223967537702818","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-04-20T08:03:08Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000007?sharesnapshot=2021-04-20T08:03:08.0000000Z","recoveryPointSizeInGB":0}}]}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '874' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:11 GMT + - Thu, 20 May 2021 02:02:27 GMT expires: - '-1' pragma: @@ -4025,7 +4026,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -4039,30 +4040,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","name":"AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:07.4102011Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1550' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:12 GMT + - Thu, 20 May 2021 02:02:28 GMT expires: - '-1' pragma: @@ -4078,7 +4079,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '141' x-powered-by: - ASP.NET status: @@ -4092,45 +4093,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '257' + - '188' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:04:12 GMT + - Thu, 20 May 2021 02:02:29 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -4139,36 +4146,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-20T08:01:30.2582001Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-20T08:01:30.1800962Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '919' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:12 GMT + - Thu, 20 May 2021 02:02:30 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4177,64 +4184,66 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": - "OriginalLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '348' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/recoveryPoints/2261223967537702818/restore?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationsStatus/04dfa8ae-4123-46b3-887e-d1f399c4f88c?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:04:14 GMT + - Thu, 20 May 2021 02:02:32 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationResults/04dfa8ae-4123-46b3-887e-d1f399c4f88c?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '138' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4243,30 +4252,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/04dfa8ae-4123-46b3-887e-d1f399c4f88c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"04dfa8ae-4123-46b3-887e-d1f399c4f88c","name":"04dfa8ae-4123-46b3-887e-d1f399c4f88c","status":"Succeeded","startTime":"2021-04-20T08:04:13.9558512Z","endTime":"2021-04-20T08:04:13.9558512Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"04dfa8ae-4123-46b3-887e-d1f399c4f88c"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:13 GMT + - Thu, 20 May 2021 02:02:33 GMT expires: - '-1' pragma: @@ -4282,7 +4291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '137' x-powered-by: - ASP.NET status: @@ -4296,41 +4305,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c","name":"04dfa8ae-4123-46b3-887e-d1f399c4f88c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.2955013S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:04:13.9558512Z","activityId":"fde4e226-a1ae-11eb-ac51-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1141' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:14 GMT + - Thu, 20 May 2021 02:02: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: @@ -4340,7 +4344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '136' x-powered-by: - ASP.NET status: @@ -4354,41 +4358,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c","name":"04dfa8ae-4123-46b3-887e-d1f399c4f88c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.8589358S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:04:13.9558512Z","activityId":"fde4e226-a1ae-11eb-ac51-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1141' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:15 GMT + - Thu, 20 May 2021 02:02:36 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4398,7 +4397,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '135' x-powered-by: - ASP.NET status: @@ -4412,41 +4411,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c","name":"04dfa8ae-4123-46b3-887e-d1f399c4f88c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1003849S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:04:13.9558512Z","activityId":"fde4e226-a1ae-11eb-ac51-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1141' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:15 GMT + - Thu, 20 May 2021 02:02:37 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4456,7 +4450,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '134' x-powered-by: - ASP.NET status: @@ -4470,41 +4464,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c","name":"04dfa8ae-4123-46b3-887e-d1f399c4f88c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.3881196S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:04:13.9558512Z","activityId":"fde4e226-a1ae-11eb-ac51-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1142' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:46 GMT + - Thu, 20 May 2021 02:02: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: @@ -4514,7 +4503,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '133' x-powered-by: - ASP.NET status: @@ -4528,41 +4517,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c","name":"04dfa8ae-4123-46b3-887e-d1f399c4f88c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT54.022436S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"4/20/2021 - 8:03:08 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-04-20T08:04:13.9558512Z","endTime":"2021-04-20T08:05:07.9782872Z","activityId":"fde4e226-a1ae-11eb-ac51-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1231' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:16 GMT + - Thu, 20 May 2021 02:02:40 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4572,7 +4556,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '132' x-powered-by: - ASP.NET status: @@ -4586,41 +4570,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job show + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/04dfa8ae-4123-46b3-887e-d1f399c4f88c","name":"04dfa8ae-4123-46b3-887e-d1f399c4f88c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT54.022436S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"4/20/2021 - 8:03:08 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-04-20T08:04:13.9558512Z","endTime":"2021-04-20T08:05:07.9782872Z","activityId":"fde4e226-a1ae-11eb-ac51-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1231' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:46 GMT + - Thu, 20 May 2021 02:02: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: @@ -4630,7 +4609,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '131' x-powered-by: - ASP.NET status: @@ -4644,31 +4623,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","name":"AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:07.4102011Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1702' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:46 GMT + - Thu, 20 May 2021 02:02:42 GMT expires: - '-1' pragma: @@ -4684,7 +4662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '130' x-powered-by: - ASP.NET status: @@ -4698,46 +4676,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '257' + - '188' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:05:47 GMT + - Thu, 20 May 2021 02:02:44 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -4746,37 +4729,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-20T08:01:30.2582001Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-20T08:01:30.1800962Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '919' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:47 GMT + - Thu, 20 May 2021 02:02:45 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4785,8 +4767,12 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - status: - code: 200 + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' + x-powered-by: + - ASP.NET + status: + code: 200 message: OK - request: body: null @@ -4796,46 +4782,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '257' + - '188' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:05:47 GMT + - Thu, 20 May 2021 02:02:46 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -4844,37 +4835,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-20T08:01:30.2582001Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-20T08:01:30.1800962Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '919' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:47 GMT + - Thu, 20 May 2021 02:02:47 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4883,66 +4873,66 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": - "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore", "targetDetails": - {"name": "clitest-item000011", "targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '584' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/recoveryPoints/2261223967537702818/restore?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationsStatus/6418ce44-fb8f-42b0-b6bc-efae55101e58?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:05:48 GMT + - Thu, 20 May 2021 02:02:49 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationResults/6418ce44-fb8f-42b0-b6bc-efae55101e58?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4951,22 +4941,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6418ce44-fb8f-42b0-b6bc-efae55101e58?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"6418ce44-fb8f-42b0-b6bc-efae55101e58","name":"6418ce44-fb8f-42b0-b6bc-efae55101e58","status":"InProgress","startTime":"2021-04-20T08:05:49.2733939Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4975,7 +4964,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:49 GMT + - Thu, 20 May 2021 02:02:50 GMT expires: - '-1' pragma: @@ -4991,7 +4980,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '124' x-powered-by: - ASP.NET status: @@ -5005,31 +4994,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6418ce44-fb8f-42b0-b6bc-efae55101e58?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"6418ce44-fb8f-42b0-b6bc-efae55101e58","name":"6418ce44-fb8f-42b0-b6bc-efae55101e58","status":"Succeeded","startTime":"2021-04-20T08:05:49.2733939Z","endTime":"2021-04-20T08:05:49.2733939Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"6418ce44-fb8f-42b0-b6bc-efae55101e58"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:50 GMT + - Thu, 20 May 2021 02:02:51 GMT expires: - '-1' pragma: @@ -5045,7 +5033,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '123' x-powered-by: - ASP.NET status: @@ -5059,43 +5047,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account - --target-file-share --target-folder + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58","name":"6418ce44-fb8f-42b0-b6bc-efae55101e58","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.714775S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:05:49.2733939Z","activityId":"369dee2e-a1af-11eb-8557-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1246' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:51 GMT + - Thu, 20 May 2021 02:02: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: @@ -5105,7 +5086,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '122' x-powered-by: - ASP.NET status: @@ -5119,42 +5100,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58","name":"6418ce44-fb8f-42b0-b6bc-efae55101e58","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.2327678S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:05:49.2733939Z","activityId":"369dee2e-a1af-11eb-8557-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1247' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:51 GMT + - Thu, 20 May 2021 02:02: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: @@ -5164,7 +5139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '121' x-powered-by: - ASP.NET status: @@ -5178,42 +5153,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58","name":"6418ce44-fb8f-42b0-b6bc-efae55101e58","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.4941676S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:05:49.2733939Z","activityId":"369dee2e-a1af-11eb-8557-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1247' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:52 GMT + - Thu, 20 May 2021 02:02: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: @@ -5223,7 +5192,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '120' x-powered-by: - ASP.NET status: @@ -5237,42 +5206,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58","name":"6418ce44-fb8f-42b0-b6bc-efae55101e58","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.7519489S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:05:49.2733939Z","activityId":"369dee2e-a1af-11eb-8557-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1248' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:22 GMT + - Thu, 20 May 2021 02:02:56 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5282,7 +5245,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '119' x-powered-by: - ASP.NET status: @@ -5296,42 +5259,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58","name":"6418ce44-fb8f-42b0-b6bc-efae55101e58","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.1030698S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"4/20/2021 - 8:03:08 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data - Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-04-20T08:05:49.2733939Z","endTime":"2021-04-20T08:06:22.3764637Z","activityId":"369dee2e-a1af-11eb-8557-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1338' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:52 GMT + - Thu, 20 May 2021 02:02: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: @@ -5341,7 +5298,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '118' x-powered-by: - ASP.NET status: @@ -5355,42 +5312,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job show + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6418ce44-fb8f-42b0-b6bc-efae55101e58","name":"6418ce44-fb8f-42b0-b6bc-efae55101e58","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.1030698S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"4/20/2021 - 8:03:08 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data - Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-04-20T08:05:49.2733939Z","endTime":"2021-04-20T08:06:22.3764637Z","activityId":"369dee2e-a1af-11eb-8557-2cf05d45d149"}}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"InProgress","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1338' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:24 GMT + - Thu, 20 May 2021 02:02:58 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5400,7 +5351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '117' x-powered-by: - ASP.NET status: @@ -5414,31 +5365,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccaabc45-e0f3-4cd6-9704-1f6693068803?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","name":"AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:07.4102011Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' + string: '{"id":"ccaabc45-e0f3-4cd6-9704-1f6693068803","name":"ccaabc45-e0f3-4cd6-9704-1f6693068803","status":"Succeeded","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"2021-05-20T02:02:18.1047329Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"dc687443-9bdc-48ae-b13c-6af506172b20"}}' headers: cache-control: - no-cache content-length: - - '1702' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:25 GMT + - Thu, 20 May 2021 02:03:00 GMT expires: - '-1' pragma: @@ -5454,7 +5404,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '116' x-powered-by: - ASP.NET status: @@ -5468,46 +5418,54 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dc687443-9bdc-48ae-b13c-6af506172b20?api-version=2020-10-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/dc687443-9bdc-48ae-b13c-6af506172b20","name":"dc687443-9bdc-48ae-b13c-6af506172b20","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.8244479S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000007","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000008"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-20T02:02:18.1047329Z","endTime":"2021-05-20T02:02:59.9291808Z","activityId":"0c6d7cb3-b90f-11eb-b5d3-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '257' + - '946' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:07:25 GMT + - Thu, 20 May 2021 02:03:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -5516,37 +5474,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-20T08:01:30.2582001Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-20T08:01:30.1800962Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","name":"AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '919' + - '1352' content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:25 GMT + - Thu, 20 May 2021 02:03:01 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5555,57 +5512,67 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-06-19T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/backup?api-version=2020-10-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationsStatus/81871e5c-f146-4189-8e54-03d54be4f040?api-version=2020-10-01 cache-control: - no-cache content-length: - - '257' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 20 Apr 2021 08:07:26 GMT + - Thu, 20 May 2021 02:03:02 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationResults/81871e5c-f146-4189-8e54-03d54be4f040?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 202 + message: Accepted - request: body: null headers: @@ -5614,37 +5581,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/81871e5c-f146-4189-8e54-03d54be4f040?api-version=2020-10-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-20T08:01:30.2582001Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-20T08:01:30.1800962Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"id":"81871e5c-f146-4189-8e54-03d54be4f040","name":"81871e5c-f146-4189-8e54-03d54be4f040","status":"Succeeded","startTime":"2021-05-20T02:03:02.4607282Z","endTime":"2021-05-20T02:03:02.4607282Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2b37da3a-da8c-43fa-8cb4-80f507fb5355"}}' headers: cache-control: - no-cache content-length: - - '919' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:26 GMT + - Thu, 20 May 2021 02:03:02 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5653,68 +5619,13 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": - "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": - [{"path": "clitest-file000005", "fileSpecType": "File", "targetFolderPath": - "folder1"}], "targetDetails": {"name": "clitest-item000011", "targetResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup restore restore-azurefiles - Connection: - - keep-alive - Content-Length: - - '699' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/recoveryPoints/2261223967537702818/restore?api-version=2020-10-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationsStatus/45ea119a-cd0f-47d2-b4cd-6352783e55b5?api-version=2020-10-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 20 Apr 2021 08:07:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationResults/45ea119a-cd0f-47d2-b4cd-6352783e55b5?api-version=2020-10-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5723,37 +5634,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/45ea119a-cd0f-47d2-b4cd-6352783e55b5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2b37da3a-da8c-43fa-8cb4-80f507fb5355?api-version=2020-10-01 response: body: - string: '{"id":"45ea119a-cd0f-47d2-b4cd-6352783e55b5","name":"45ea119a-cd0f-47d2-b4cd-6352783e55b5","status":"InProgress","startTime":"2021-04-20T08:07:27.3988458Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2b37da3a-da8c-43fa-8cb4-80f507fb5355","name":"2b37da3a-da8c-43fa-8cb4-80f507fb5355","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.3229644S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-05-20T02:03:02.4607282Z","activityId":"817158d6-b90f-11eb-a2f5-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '188' + - '937' content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:27 GMT + - Thu, 20 May 2021 02:03: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: @@ -5777,37 +5690,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/45ea119a-cd0f-47d2-b4cd-6352783e55b5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2b37da3a-da8c-43fa-8cb4-80f507fb5355?api-version=2020-10-01 response: body: - string: '{"id":"45ea119a-cd0f-47d2-b4cd-6352783e55b5","name":"45ea119a-cd0f-47d2-b4cd-6352783e55b5","status":"Succeeded","startTime":"2021-04-20T08:07:27.3988458Z","endTime":"2021-04-20T08:07:27.3988458Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"45ea119a-cd0f-47d2-b4cd-6352783e55b5"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2b37da3a-da8c-43fa-8cb4-80f507fb5355","name":"2b37da3a-da8c-43fa-8cb4-80f507fb5355","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.910644S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-05-20T02:03:02.4607282Z","activityId":"817158d6-b90f-11eb-a2f5-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '304' + - '936' content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:29 GMT + - Thu, 20 May 2021 02:03: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: @@ -5817,7 +5732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -5831,36 +5746,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/45ea119a-cd0f-47d2-b4cd-6352783e55b5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2b37da3a-da8c-43fa-8cb4-80f507fb5355?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/45ea119a-cd0f-47d2-b4cd-6352783e55b5","name":"45ea119a-cd0f-47d2-b4cd-6352783e55b5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.8831459S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:07:27.3988458Z","activityId":"70f8b562-a1af-11eb-ae83-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2b37da3a-da8c-43fa-8cb4-80f507fb5355","name":"2b37da3a-da8c-43fa-8cb4-80f507fb5355","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1306483S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-05-20T02:03:02.4607282Z","activityId":"817158d6-b90f-11eb-a2f5-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1254' + - '937' content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:29 GMT + - Thu, 20 May 2021 02:03:04 GMT expires: - '-1' pragma: @@ -5877,7 +5788,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -5897,29 +5808,26 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/45ea119a-cd0f-47d2-b4cd-6352783e55b5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2b37da3a-da8c-43fa-8cb4-80f507fb5355?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/45ea119a-cd0f-47d2-b4cd-6352783e55b5","name":"45ea119a-cd0f-47d2-b4cd-6352783e55b5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.6943963S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:07:27.3988458Z","activityId":"70f8b562-a1af-11eb-ae83-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/2b37da3a-da8c-43fa-8cb4-80f507fb5355","name":"2b37da3a-da8c-43fa-8cb4-80f507fb5355","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.5241052S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000007","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-05-20T02:03:02.4607282Z","endTime":"2021-05-20T02:03:04.9848334Z","activityId":"817158d6-b90f-11eb-a2f5-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1254' + - '976' content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:30 GMT + - Thu, 20 May 2021 02:03:34 GMT expires: - '-1' pragma: @@ -5936,7 +5844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -5950,42 +5858,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - storage account show-connection-string Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -n + - -n -g User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/45ea119a-cd0f-47d2-b4cd-6352783e55b5?api-version=2020-10-01 + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/45ea119a-cd0f-47d2-b4cd-6352783e55b5","name":"45ea119a-cd0f-47d2-b4cd-6352783e55b5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT4.0657622S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target - File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:07:27.3988458Z","activityId":"70f8b562-a1af-11eb-ae83-2cf05d45d149"}}' + string: '{"keys":[{"creationTime":"2021-05-20T01:58:51.2543910Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T01:58:51.2543910Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache content-length: - - '1254' + - '380' content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:31 GMT + - Thu, 20 May 2021 02:04:04 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5995,12 +5896,46 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET + - '11999' status: code: 200 message: OK +- request: + body: null + headers: + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 + x-ms-date: + - Thu, 20 May 2021 02:04:05 GMT + x-ms-share-quota: + - '1' + x-ms-version: + - '2018-11-09' + method: PUT + uri: https://clitest000003.file.core.windows.net/clitest-item000011?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 20 May 2021 02:04:05 GMT + etag: + - '"0x8D91B338C321A7E"' + last-modified: + - Thu, 20 May 2021 02:04:05 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2018-11-09' + status: + code: 201 + message: Created - request: body: null headers: @@ -6009,42 +5944,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/45ea119a-cd0f-47d2-b4cd-6352783e55b5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/45ea119a-cd0f-47d2-b4cd-6352783e55b5","name":"45ea119a-cd0f-47d2-b4cd-6352783e55b5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.9049855S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"4/20/2021 - 8:03:08 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data - Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-04-20T08:07:27.3988458Z","endTime":"2021-04-20T08:08:00.3038313Z","activityId":"70f8b562-a1af-11eb-ae83-2cf05d45d149"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","name":"AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:02.4607282Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1345' + - '1550' content-type: - application/json date: - - Tue, 20 Apr 2021 08:08:01 GMT + - Thu, 20 May 2021 02:04: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: @@ -6068,42 +5997,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job show + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/45ea119a-cd0f-47d2-b4cd-6352783e55b5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/45ea119a-cd0f-47d2-b4cd-6352783e55b5","name":"45ea119a-cd0f-47d2-b4cd-6352783e55b5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.9049855S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"4/20/2021 - 8:03:08 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data - Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-04-20T08:07:27.3988458Z","endTime":"2021-04-20T08:08:00.3038313Z","activityId":"70f8b562-a1af-11eb-ae83-2cf05d45d149"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/recoveryPoints/2261125064012474325","name":"2261125064012474325","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-05-20T02:03:03Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000007?sharesnapshot=2021-05-20T02:03:03.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache content-length: - - '1345' + - '874' content-type: - application/json date: - - Tue, 20 Apr 2021 08:08:32 GMT + - Thu, 20 May 2021 02:04:06 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -6113,7 +6036,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -6127,30 +6050,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + - -g -v -c -i -r --resolve-conflict --restore-mode User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","name":"AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:07.4102011Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","name":"AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:02.4607282Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1702' + - '1550' content-type: - application/json date: - - Tue, 20 Apr 2021 08:08:32 GMT + - Thu, 20 May 2021 02:04:07 GMT expires: - '-1' pragma: @@ -6166,7 +6089,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -6180,14 +6103,14 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + - -g -v -c -i -r --resolve-conflict --restore-mode User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -6205,7 +6128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:08:33 GMT + - Thu, 20 May 2021 02:04:07 GMT expires: - '-1' pragma: @@ -6227,21 +6150,21 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + - -g -v -c -i -r --resolve-conflict --restore-mode User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-20T08:01:30.2582001Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-20T08:01:30.1800962Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-20T01:58:51.2543910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-20T01:58:51.1606376Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -6250,7 +6173,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:08:33 GMT + - Thu, 20 May 2021 02:04:07 GMT expires: - '-1' pragma: @@ -6271,46 +6194,45 @@ interactions: - request: body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": "OriginalLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": - [{"path": "clitest-file000005", "fileSpecType": "File"}]}}' + "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive Content-Length: - - '432' + - '348' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + - -g -v -c -i -r --resolve-conflict --restore-mode User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/recoveryPoints/2261223967537702818/restore?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/recoveryPoints/2261125064012474325/restore?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationsStatus/64e2f3e5-9e86-41d8-87d5-06f521aecaaf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationsStatus/e309e7cd-023f-4726-901b-9d1ae138ffc0?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:08:33 GMT + - Thu, 20 May 2021 02:04:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationResults/64e2f3e5-9e86-41d8-87d5-06f521aecaaf?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationResults/e309e7cd-023f-4726-901b-9d1ae138ffc0?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -6332,30 +6254,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + - -g -v -c -i -r --resolve-conflict --restore-mode User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/64e2f3e5-9e86-41d8-87d5-06f521aecaaf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e309e7cd-023f-4726-901b-9d1ae138ffc0?api-version=2020-10-01 response: body: - string: '{"id":"64e2f3e5-9e86-41d8-87d5-06f521aecaaf","name":"64e2f3e5-9e86-41d8-87d5-06f521aecaaf","status":"Succeeded","startTime":"2021-04-20T08:08:34.0344221Z","endTime":"2021-04-20T08:08:34.0344221Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"64e2f3e5-9e86-41d8-87d5-06f521aecaaf"}}' + string: '{"id":"e309e7cd-023f-4726-901b-9d1ae138ffc0","name":"e309e7cd-023f-4726-901b-9d1ae138ffc0","status":"Succeeded","startTime":"2021-05-20T02:04:09.071714Z","endTime":"2021-05-20T02:04:09.071714Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e309e7cd-023f-4726-901b-9d1ae138ffc0"}}' headers: cache-control: - no-cache content-length: - - '304' + - '302' content-type: - application/json date: - - Tue, 20 Apr 2021 08:08:34 GMT + - Thu, 20 May 2021 02:04:09 GMT expires: - '-1' pragma: @@ -6371,7 +6293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -6385,34 +6307,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + - -g -v -c -i -r --resolve-conflict --restore-mode User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf","name":"64e2f3e5-9e86-41d8-87d5-06f521aecaaf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.3931979S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0","name":"e309e7cd-023f-4726-901b-9d1ae138ffc0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.4347636S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:08:34.0344221Z","activityId":"9917f02e-a1af-11eb-8025-2cf05d45d149"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:04:09.071714Z","activityId":"a8caf50c-b90f-11eb-8782-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1140' content-type: - application/json date: - - Tue, 20 Apr 2021 08:08:35 GMT + - Thu, 20 May 2021 02:04:10 GMT expires: - '-1' pragma: @@ -6429,7 +6351,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -6449,28 +6371,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf","name":"64e2f3e5-9e86-41d8-87d5-06f521aecaaf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.9118993S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0","name":"e309e7cd-023f-4726-901b-9d1ae138ffc0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.07574S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:08:34.0344221Z","activityId":"9917f02e-a1af-11eb-8025-2cf05d45d149"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:04:09.071714Z","activityId":"a8caf50c-b90f-11eb-8782-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1138' content-type: - application/json date: - - Tue, 20 Apr 2021 08:08:35 GMT + - Thu, 20 May 2021 02:04:10 GMT expires: - '-1' pragma: @@ -6487,7 +6409,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '149' x-powered-by: - ASP.NET status: @@ -6507,28 +6429,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf","name":"64e2f3e5-9e86-41d8-87d5-06f521aecaaf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1403135S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0","name":"e309e7cd-023f-4726-901b-9d1ae138ffc0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.3380066S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:08:34.0344221Z","activityId":"9917f02e-a1af-11eb-8025-2cf05d45d149"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:04:09.071714Z","activityId":"a8caf50c-b90f-11eb-8782-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1141' + - '1140' content-type: - application/json date: - - Tue, 20 Apr 2021 08:08:35 GMT + - Thu, 20 May 2021 02:04:10 GMT expires: - '-1' pragma: @@ -6545,7 +6467,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '148' x-powered-by: - ASP.NET status: @@ -6565,28 +6487,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf","name":"64e2f3e5-9e86-41d8-87d5-06f521aecaaf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.4547595S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0","name":"e309e7cd-023f-4726-901b-9d1ae138ffc0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.7690316S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:08:34.0344221Z","activityId":"9917f02e-a1af-11eb-8025-2cf05d45d149"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:04:09.071714Z","activityId":"a8caf50c-b90f-11eb-8782-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1142' + - '1141' content-type: - application/json date: - - Tue, 20 Apr 2021 08:09:05 GMT + - Thu, 20 May 2021 02:04:41 GMT expires: - '-1' pragma: @@ -6603,7 +6525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '147' x-powered-by: - ASP.NET status: @@ -6623,28 +6545,28 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf","name":"64e2f3e5-9e86-41d8-87d5-06f521aecaaf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.6392484S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"4/20/2021 - 8:03:08 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-04-20T08:08:34.0344221Z","endTime":"2021-04-20T08:09:07.6736705Z","activityId":"9917f02e-a1af-11eb-8025-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0","name":"e309e7cd-023f-4726-901b-9d1ae138ffc0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1M3.1298915S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:04:09.071714Z","activityId":"a8caf50c-b90f-11eb-8782-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1232' + - '1142' content-type: - application/json date: - - Tue, 20 Apr 2021 08:09:35 GMT + - Thu, 20 May 2021 02:05:11 GMT expires: - '-1' pragma: @@ -6661,7 +6583,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '146' x-powered-by: - ASP.NET status: @@ -6675,34 +6597,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job show + - backup job wait Connection: - keep-alive ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/64e2f3e5-9e86-41d8-87d5-06f521aecaaf","name":"64e2f3e5-9e86-41d8-87d5-06f521aecaaf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.6392484S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"4/20/2021 - 8:03:08 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data - Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-04-20T08:08:34.0344221Z","endTime":"2021-04-20T08:09:07.6736705Z","activityId":"9917f02e-a1af-11eb-8025-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0","name":"e309e7cd-023f-4726-901b-9d1ae138ffc0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1M14.5729909S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"5/20/2021 + 2:03:04 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-05-20T02:04:09.071714Z","endTime":"2021-05-20T02:05:23.6447049Z","activityId":"a8caf50c-b90f-11eb-8782-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1232' + - '1233' content-type: - application/json date: - - Tue, 20 Apr 2021 08:10:06 GMT + - Thu, 20 May 2021 02:05:41 GMT expires: - '-1' pragma: @@ -6719,7 +6641,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '145' x-powered-by: - ASP.NET status: @@ -6733,22 +6655,80 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup job show Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e309e7cd-023f-4726-901b-9d1ae138ffc0","name":"e309e7cd-023f-4726-901b-9d1ae138ffc0","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1M14.5729909S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"5/20/2021 + 2:03:04 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-05-20T02:04:09.071714Z","endTime":"2021-05-20T02:05:23.6447049Z","activityId":"a8caf50c-b90f-11eb-8782-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1233' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:06:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","name":"AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:07.4102011Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","name":"AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:02.4607282Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -6757,7 +6737,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:10:07 GMT + - Thu, 20 May 2021 02:06:13 GMT expires: - '-1' pragma: @@ -6773,7 +6753,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -6787,15 +6767,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -6813,7 +6793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:10:07 GMT + - Thu, 20 May 2021 02:06:13 GMT expires: - '-1' pragma: @@ -6835,22 +6815,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-20T08:01:30.2582001Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-20T08:01:30.1800962Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-20T01:58:51.2543910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-20T01:58:51.1606376Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -6859,7 +6839,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:10:07 GMT + - Thu, 20 May 2021 02:06:14 GMT expires: - '-1' pragma: @@ -6885,15 +6865,15 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -6911,7 +6891,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:10:08 GMT + - Thu, 20 May 2021 02:06:14 GMT expires: - '-1' pragma: @@ -6933,22 +6913,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-20T08:01:30.2582001Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-20T08:01:30.1800962Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-20T01:58:51.2543910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-20T01:58:51.1606376Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -6957,7 +6937,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:10:08 GMT + - Thu, 20 May 2021 02:06:14 GMT expires: - '-1' pragma: @@ -6978,50 +6958,47 @@ interactions: - request: body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": - [{"path": "clitest-file000005", "fileSpecType": "File", "targetFolderPath": - "folder1"}, {"path": "clitest-file000006", "fileSpecType": "File", "targetFolderPath": - "folder1"}], "targetDetails": {"name": "clitest-item000011", "targetResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}' + "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore", "targetDetails": + {"name": "clitest-item000011", "targetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive Content-Length: - - '792' + - '584' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/recoveryPoints/2261223967537702818/restore?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/recoveryPoints/2261125064012474325/restore?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationsStatus/b79e91b4-60b3-4d51-8631-6fadf90b8225?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationsStatus/a0a56fee-6606-4282-a4c7-bcdb13419ae5?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:10:10 GMT + - Thu, 20 May 2021 02:06:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1/operationResults/b79e91b4-60b3-4d51-8631-6fadf90b8225?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationResults/a0a56fee-6606-4282-a4c7-bcdb13419ae5?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -7029,7 +7006,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -7043,22 +7020,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/b79e91b4-60b3-4d51-8631-6fadf90b8225?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a0a56fee-6606-4282-a4c7-bcdb13419ae5?api-version=2020-10-01 response: body: - string: '{"id":"b79e91b4-60b3-4d51-8631-6fadf90b8225","name":"b79e91b4-60b3-4d51-8631-6fadf90b8225","status":"Succeeded","startTime":"2021-04-20T08:10:09.7823784Z","endTime":"2021-04-20T08:10:09.7823784Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b79e91b4-60b3-4d51-8631-6fadf90b8225"}}' + string: '{"id":"a0a56fee-6606-4282-a4c7-bcdb13419ae5","name":"a0a56fee-6606-4282-a4c7-bcdb13419ae5","status":"Succeeded","startTime":"2021-05-20T02:06:15.9188252Z","endTime":"2021-05-20T02:06:15.9188252Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a0a56fee-6606-4282-a4c7-bcdb13419ae5"}}' headers: cache-control: - no-cache @@ -7067,7 +7044,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:10:10 GMT + - Thu, 20 May 2021 02:06:16 GMT expires: - '-1' pragma: @@ -7097,36 +7074,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefiles + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path - --target-storage-account --target-file-share --target-folder + - -g -v -c -i -r --resolve-conflict --restore-mode --target-storage-account + --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225","name":"b79e91b4-60b3-4d51-8631-6fadf90b8225","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.4357723S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5","name":"a0a56fee-6606-4282-a4c7-bcdb13419ae5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.7034751S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:10:09.7823784Z","activityId":"d1c44d62-a1af-11eb-bb66-2cf05d45d149"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:06:15.9188252Z","activityId":"f3e0e43a-b90f-11eb-9fa7-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1254' + - '1247' content-type: - application/json date: - - Tue, 20 Apr 2021 08:10:11 GMT + - Thu, 20 May 2021 02:06:17 GMT expires: - '-1' pragma: @@ -7143,7 +7120,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -7163,29 +7140,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225","name":"b79e91b4-60b3-4d51-8631-6fadf90b8225","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.9169618S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5","name":"a0a56fee-6606-4282-a4c7-bcdb13419ae5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.3462816S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:10:09.7823784Z","activityId":"d1c44d62-a1af-11eb-bb66-2cf05d45d149"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:06:15.9188252Z","activityId":"f3e0e43a-b90f-11eb-9fa7-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1254' + - '1247' content-type: - application/json date: - - Tue, 20 Apr 2021 08:10:10 GMT + - Thu, 20 May 2021 02:06:17 GMT expires: - '-1' pragma: @@ -7202,7 +7179,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -7222,29 +7199,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225","name":"b79e91b4-60b3-4d51-8631-6fadf90b8225","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1428761S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5","name":"a0a56fee-6606-4282-a4c7-bcdb13419ae5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.5920795S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:10:09.7823784Z","activityId":"d1c44d62-a1af-11eb-bb66-2cf05d45d149"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:06:15.9188252Z","activityId":"f3e0e43a-b90f-11eb-9fa7-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1254' + - '1247' content-type: - application/json date: - - Tue, 20 Apr 2021 08:10:10 GMT + - Thu, 20 May 2021 02:06:17 GMT expires: - '-1' pragma: @@ -7261,7 +7238,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '148' x-powered-by: - ASP.NET status: @@ -7281,29 +7258,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225","name":"b79e91b4-60b3-4d51-8631-6fadf90b8225","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.3981916S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5","name":"a0a56fee-6606-4282-a4c7-bcdb13419ae5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.9737342S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job - Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:10:09.7823784Z","activityId":"d1c44d62-a1af-11eb-bb66-2cf05d45d149"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:06:15.9188252Z","activityId":"f3e0e43a-b90f-11eb-9fa7-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1255' + - '1248' content-type: - application/json date: - - Tue, 20 Apr 2021 08:10:41 GMT + - Thu, 20 May 2021 02:06:48 GMT expires: - '-1' pragma: @@ -7320,7 +7297,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '147' x-powered-by: - ASP.NET status: @@ -7340,29 +7317,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225","name":"b79e91b4-60b3-4d51-8631-6fadf90b8225","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT53.9875713S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"4/20/2021 - 8:03:08 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5","name":"a0a56fee-6606-4282-a4c7-bcdb13419ae5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.5124992S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"5/20/2021 + 2:03:04 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-04-20T08:10:09.7823784Z","endTime":"2021-04-20T08:11:03.7699497Z","activityId":"d1c44d62-a1af-11eb-bb66-2cf05d45d149"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-05-20T02:06:15.9188252Z","endTime":"2021-05-20T02:06:49.4313244Z","activityId":"f3e0e43a-b90f-11eb-9fa7-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1345' + - '1338' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:11 GMT + - Thu, 20 May 2021 02:07:18 GMT expires: - '-1' pragma: @@ -7379,7 +7356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '146' x-powered-by: - ASP.NET status: @@ -7399,29 +7376,29 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/b79e91b4-60b3-4d51-8631-6fadf90b8225","name":"b79e91b4-60b3-4d51-8631-6fadf90b8225","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT53.9875713S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"4/20/2021 - 8:03:08 AM","Target File Share Name":"clitest-item000011","Target Storage - Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/a0a56fee-6606-4282-a4c7-bcdb13419ae5","name":"a0a56fee-6606-4282-a4c7-bcdb13419ae5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.5124992S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"5/20/2021 + 2:03:04 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/","Data Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-04-20T08:10:09.7823784Z","endTime":"2021-04-20T08:11:03.7699497Z","activityId":"d1c44d62-a1af-11eb-bb66-2cf05d45d149"}}' + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-05-20T02:06:15.9188252Z","endTime":"2021-05-20T02:06:49.4313244Z","activityId":"f3e0e43a-b90f-11eb-9fa7-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1345' + - '1338' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:42 GMT + - Thu, 20 May 2021 02:07:49 GMT expires: - '-1' pragma: @@ -7452,21 +7429,22 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","name":"AzureFileShare;0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:07.4102011Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","name":"AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:02.4607282Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache @@ -7475,7 +7453,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:43 GMT + - Thu, 20 May 2021 02:07:50 GMT expires: - '-1' pragma: @@ -7505,49 +7483,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup restore restore-azurefiles Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B0ae89afd3183bda0f638bb3e0f7300799344a49fcc9507f91cfc4e066b1bf1b1?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 response: body: - string: '' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '257' + content-type: + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:11:43 GMT + - Thu, 20 May 2021 02:07:50 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - gateway status: - code: 202 - message: Accepted + code: 404 + message: Not Found - request: body: null headers: @@ -7556,36 +7531,37 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-20T01:58:51.2543910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-20T01:58:51.1606376Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '186' + - '919' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:43 GMT + - Thu, 20 May 2021 02:07:50 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -7594,10 +7570,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' - x-powered-by: - - ASP.NET status: code: 200 message: OK @@ -7609,51 +7581,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: cache-control: - no-cache content-length: - - '186' + - '257' content-type: - - application/json + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:11:45 GMT + - Thu, 20 May 2021 02: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-ms-ratelimit-remaining-subscription-resource-requests: - - '130' - x-powered-by: - - ASP.NET + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: @@ -7662,36 +7629,1757 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup restore restore-azurefiles Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-20T01:58:51.2543910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-20T01:58:51.1606376Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '919' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:07:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": + "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": + [{"path": "clitest-file000005", "fileSpecType": "File", "targetFolderPath": + "folder1"}], "targetDetails": {"name": "clitest-item000011", "targetResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + Content-Length: + - '699' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/recoveryPoints/2261125064012474325/restore?api-version=2020-10-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationsStatus/d8ddb472-2663-4415-813b-74e60f2466ce?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 20 May 2021 02:07:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationResults/d8ddb472-2663-4415-813b-74e60f2466ce?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/d8ddb472-2663-4415-813b-74e60f2466ce?api-version=2020-10-01 + response: + body: + string: '{"id":"d8ddb472-2663-4415-813b-74e60f2466ce","name":"d8ddb472-2663-4415-813b-74e60f2466ce","status":"Succeeded","startTime":"2021-05-20T02:07:52.1164385Z","endTime":"2021-05-20T02:07:52.1164385Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d8ddb472-2663-4415-813b-74e60f2466ce"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 20 May 2021 02: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-ms-ratelimit-remaining-subscription-resource-requests: + - '131' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce","name":"d8ddb472-2663-4415-813b-74e60f2466ce","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.2562124S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:07:52.1164385Z","activityId":"2d8d0590-b910-11eb-93d9-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '780' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:07:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce","name":"d8ddb472-2663-4415-813b-74e60f2466ce","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.9221359S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:07:52.1164385Z","activityId":"2d8d0590-b910-11eb-93d9-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1254' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:07:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce","name":"d8ddb472-2663-4415-813b-74e60f2466ce","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.5909859S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:07:52.1164385Z","activityId":"2d8d0590-b910-11eb-93d9-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1254' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:07:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce","name":"d8ddb472-2663-4415-813b-74e60f2466ce","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.8871756S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:07:52.1164385Z","activityId":"2d8d0590-b910-11eb-93d9-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1255' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:08:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce","name":"d8ddb472-2663-4415-813b-74e60f2466ce","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.924005S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"5/20/2021 + 2:03:04 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-05-20T02:07:52.1164385Z","endTime":"2021-05-20T02:08:26.0404435Z","activityId":"2d8d0590-b910-11eb-93d9-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1344' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:08:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/d8ddb472-2663-4415-813b-74e60f2466ce","name":"d8ddb472-2663-4415-813b-74e60f2466ce","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.924005S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"5/20/2021 + 2:03:04 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-05-20T02:07:52.1164385Z","endTime":"2021-05-20T02:08:26.0404435Z","activityId":"2d8d0590-b910-11eb-93d9-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1344' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:09:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","name":"AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:02.4607282Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1702' + content-type: + - application/json + date: + - Thu, 20 May 2021 02: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-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '257' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 May 2021 02:09:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-20T01:58:51.2543910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-20T01:58:51.1606376Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '919' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:09:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": + "OriginalLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": + [{"path": "clitest-file000005", "fileSpecType": "File"}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + Content-Length: + - '432' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/recoveryPoints/2261125064012474325/restore?api-version=2020-10-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationsStatus/f41f15b2-8891-45e1-8004-8e18c110268c?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 20 May 2021 02:09:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationResults/f41f15b2-8891-45e1-8004-8e18c110268c?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/f41f15b2-8891-45e1-8004-8e18c110268c?api-version=2020-10-01 + response: + body: + string: '{"id":"f41f15b2-8891-45e1-8004-8e18c110268c","name":"f41f15b2-8891-45e1-8004-8e18c110268c","status":"Succeeded","startTime":"2021-05-20T02:09:29.3031996Z","endTime":"2021-05-20T02:09:29.3031996Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f41f15b2-8891-45e1-8004-8e18c110268c"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 20 May 2021 02: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-ms-ratelimit-remaining-subscription-resource-requests: + - '115' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c","name":"f41f15b2-8891-45e1-8004-8e18c110268c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT5.6436636S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:09:29.3031996Z","activityId":"678cf52e-b910-11eb-a0e8-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1141' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:09:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c","name":"f41f15b2-8891-45e1-8004-8e18c110268c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT6.9398868S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:09:29.3031996Z","activityId":"678cf52e-b910-11eb-a0e8-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1141' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:09:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c","name":"f41f15b2-8891-45e1-8004-8e18c110268c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT7.7599737S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:09:29.3031996Z","activityId":"678cf52e-b910-11eb-a0e8-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1141' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:09:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c","name":"f41f15b2-8891-45e1-8004-8e18c110268c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT43.7807069S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:09:29.3031996Z","activityId":"678cf52e-b910-11eb-a0e8-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1142' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:10:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c","name":"f41f15b2-8891-45e1-8004-8e18c110268c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT53.9412842S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"5/20/2021 + 2:03:04 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-05-20T02:09:29.3031996Z","endTime":"2021-05-20T02:10:23.2444838Z","activityId":"678cf52e-b910-11eb-a0e8-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1232' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:10:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '144' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job show + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f41f15b2-8891-45e1-8004-8e18c110268c","name":"f41f15b2-8891-45e1-8004-8e18c110268c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT53.9412842S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"5/20/2021 + 2:03:04 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000007/","Data + Transferred (in MB)":"0","Number Of Restored Files":"1","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-05-20T02:09:29.3031996Z","endTime":"2021-05-20T02:10:23.2444838Z","activityId":"678cf52e-b910-11eb-a0e8-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1232' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:11:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","name":"AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:02.4607282Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1702' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:11:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '257' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 May 2021 02:11:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-20T01:58:51.2543910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-20T01:58:51.1606376Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '919' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:11:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '257' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 May 2021 02:11:15 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-20T01:58:51.2543910Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-20T01:58:51.1606376Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '919' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:11:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": + "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "copyOptions": "Overwrite", "restoreRequestType": "ItemLevelRestore", "restoreFileSpecs": + [{"path": "clitest-file000005", "fileSpecType": "File", "targetFolderPath": + "folder1"}, {"path": "clitest-file000006", "fileSpecType": "File", "targetFolderPath": + "folder1"}], "targetDetails": {"name": "clitest-item000011", "targetResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + Content-Length: + - '792' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/recoveryPoints/2261125064012474325/restore?api-version=2020-10-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationsStatus/7fee4868-5b03-4c27-b769-a2985a5b65a8?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 20 May 2021 02:11:17 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68/operationResults/7fee4868-5b03-4c27-b769-a2985a5b65a8?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fee4868-5b03-4c27-b769-a2985a5b65a8?api-version=2020-10-01 + response: + body: + string: '{"id":"7fee4868-5b03-4c27-b769-a2985a5b65a8","name":"7fee4868-5b03-4c27-b769-a2985a5b65a8","status":"InProgress","startTime":"2021-05-20T02:11:17.3518094Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:11:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/7fee4868-5b03-4c27-b769-a2985a5b65a8?api-version=2020-10-01 + response: + body: + string: '{"id":"7fee4868-5b03-4c27-b769-a2985a5b65a8","name":"7fee4868-5b03-4c27-b769-a2985a5b65a8","status":"Succeeded","startTime":"2021-05-20T02:11:17.3518094Z","endTime":"2021-05-20T02:11:17.3518094Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"7fee4868-5b03-4c27-b769-a2985a5b65a8"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:11:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefiles + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --source-file-type --source-file-path + --target-storage-account --target-file-share --target-folder + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8","name":"7fee4868-5b03-4c27-b769-a2985a5b65a8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.6486614S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:11:17.3518094Z","activityId":"a7b0d6ce-b910-11eb-a324-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1254' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:11:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8","name":"7fee4868-5b03-4c27-b769-a2985a5b65a8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.2813128S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:11:17.3518094Z","activityId":"a7b0d6ce-b910-11eb-a324-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1254' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:11:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8","name":"7fee4868-5b03-4c27-b769-a2985a5b65a8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.6350842S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:11:17.3518094Z","activityId":"a7b0d6ce-b910-11eb-a324-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '1254' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:11:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -g -v -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8","name":"7fee4868-5b03-4c27-b769-a2985a5b65a8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.907945S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","Target + File Share Name":"clitest-item000011","Target Storage Account Name":"clitest000003","Job + Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:11:17.3518094Z","activityId":"a7b0d6ce-b910-11eb-a324-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '186' + - '1254' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:46 GMT + - Thu, 20 May 2021 02:11: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: @@ -7701,7 +9389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '146' x-powered-by: - ASP.NET status: @@ -7715,36 +9403,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8","name":"7fee4868-5b03-4c27-b769-a2985a5b65a8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.4813088S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"5/20/2021 + 2:03:04 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-05-20T02:11:17.3518094Z","endTime":"2021-05-20T02:11:50.8331182Z","activityId":"a7b0d6ce-b910-11eb-a324-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '186' + - '1345' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:47 GMT + - Thu, 20 May 2021 02:12: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: @@ -7754,7 +9448,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '145' x-powered-by: - ASP.NET status: @@ -7768,36 +9462,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup job show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/7fee4868-5b03-4c27-b769-a2985a5b65a8","name":"7fee4868-5b03-4c27-b769-a2985a5b65a8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT33.4813088S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000007","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"5/20/2021 + 2:03:04 AM","Target File Share Name":"clitest-item000011","Target Storage + Account Name":"clitest000003","Job Type":"Recover to an alternate file share","RestoreDestination":"clitest000003/clitest-item000011/folder1","Data + Transferred (in MB)":"0","Number Of Restored Files":"2","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-05-20T02:11:17.3518094Z","endTime":"2021-05-20T02:11:50.8331182Z","activityId":"a7b0d6ce-b910-11eb-a324-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '186' + - '1345' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:50 GMT + - Thu, 20 May 2021 02:13: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: @@ -7807,7 +9507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '147' x-powered-by: - ASP.NET status: @@ -7827,24 +9527,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","name":"AzureFileShare;04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000007","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:02.4607282Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000008","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '186' + - '1702' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:51 GMT + - Thu, 20 May 2021 02:13:25 GMT expires: - '-1' pragma: @@ -7860,7 +9560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '147' x-powered-by: - ASP.NET status: @@ -7877,48 +9577,46 @@ interactions: - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B04054c1c9903978e61becc6b269da8285a36f661ac5cbac0a8f83958dad4ca68?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 cache-control: - no-cache content-length: - - '186' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:11:52 GMT + - Thu, 20 May 2021 02:13:26 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7933,24 +9631,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:53 GMT + - Thu, 20 May 2021 02:13:27 GMT expires: - '-1' pragma: @@ -7966,7 +9664,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '149' x-powered-by: - ASP.NET status: @@ -7986,24 +9684,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:54 GMT + - Thu, 20 May 2021 02:13:28 GMT expires: - '-1' pragma: @@ -8019,7 +9717,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '148' x-powered-by: - ASP.NET status: @@ -8039,24 +9737,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:56 GMT + - Thu, 20 May 2021 02:13:29 GMT expires: - '-1' pragma: @@ -8072,7 +9770,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '147' x-powered-by: - ASP.NET status: @@ -8092,24 +9790,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:57 GMT + - Thu, 20 May 2021 02:13:30 GMT expires: - '-1' pragma: @@ -8125,7 +9823,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '146' x-powered-by: - ASP.NET status: @@ -8145,24 +9843,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:58 GMT + - Thu, 20 May 2021 02:13:32 GMT expires: - '-1' pragma: @@ -8178,7 +9876,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '145' x-powered-by: - ASP.NET status: @@ -8198,24 +9896,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:11:59 GMT + - Thu, 20 May 2021 02:13:33 GMT expires: - '-1' pragma: @@ -8231,7 +9929,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '144' x-powered-by: - ASP.NET status: @@ -8251,24 +9949,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:01 GMT + - Thu, 20 May 2021 02:13:34 GMT expires: - '-1' pragma: @@ -8284,7 +9982,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '143' x-powered-by: - ASP.NET status: @@ -8304,24 +10002,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:02 GMT + - Thu, 20 May 2021 02:13:35 GMT expires: - '-1' pragma: @@ -8337,7 +10035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '142' x-powered-by: - ASP.NET status: @@ -8357,24 +10055,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:03 GMT + - Thu, 20 May 2021 02:13:37 GMT expires: - '-1' pragma: @@ -8390,7 +10088,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '141' x-powered-by: - ASP.NET status: @@ -8410,24 +10108,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:04 GMT + - Thu, 20 May 2021 02:13:38 GMT expires: - '-1' pragma: @@ -8443,7 +10141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '140' x-powered-by: - ASP.NET status: @@ -8463,24 +10161,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"InProgress","startTime":"2021-04-20T08:11:44.28495Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:05 GMT + - Thu, 20 May 2021 02:13:39 GMT expires: - '-1' pragma: @@ -8496,7 +10194,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '139' x-powered-by: - ASP.NET status: @@ -8516,24 +10214,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/e913a548-f7b9-49d5-8138-c5560550f95e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"e913a548-f7b9-49d5-8138-c5560550f95e","name":"e913a548-f7b9-49d5-8138-c5560550f95e","status":"Succeeded","startTime":"2021-04-20T08:11:44.28495Z","endTime":"2021-04-20T08:11:44.28495Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f7a7cc3c-821a-4968-a0df-43c65b10a3ac"}}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '300' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:07 GMT + - Thu, 20 May 2021 02:13:40 GMT expires: - '-1' pragma: @@ -8549,7 +10247,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '138' x-powered-by: - ASP.NET status: @@ -8569,32 +10267,30 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f7a7cc3c-821a-4968-a0df-43c65b10a3ac?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f7a7cc3c-821a-4968-a0df-43c65b10a3ac","name":"f7a7cc3c-821a-4968-a0df-43c65b10a3ac","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.9350785S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000007","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-04-20T08:11:44.28495Z","endTime":"2021-04-20T08:12:06.2200285Z","activityId":"0ab430be-a1b0-11eb-9555-2cf05d45d149"}}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '904' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:07 GMT + - Thu, 20 May 2021 02:13: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: @@ -8604,7 +10300,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '137' x-powered-by: - ASP.NET status: @@ -8618,30 +10314,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '880' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:07 GMT + - Thu, 20 May 2021 02:13:43 GMT expires: - '-1' pragma: @@ -8657,7 +10353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '136' x-powered-by: - ASP.NET status: @@ -8671,49 +10367,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:12:09 GMT + - Thu, 20 May 2021 02:13:44 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/c94fd483-6b77-488c-b13b-97ae3a258886?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '135' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8722,42 +10420,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:09 GMT + - Thu, 20 May 2021 02:13:45 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -8765,8 +10463,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8775,42 +10473,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"InProgress","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:10 GMT + - Thu, 20 May 2021 02:13:47 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -8818,8 +10516,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8828,42 +10526,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/26f07b4c-01cc-4979-babf-1896f7007741?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"26f07b4c-01cc-4979-babf-1896f7007741","name":"26f07b4c-01cc-4979-babf-1896f7007741","status":"Succeeded","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"2021-05-20T02:13:26.7579684Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"11f8b97e-3e7c-43dc-b0c4-5856efcf65d2"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:11 GMT + - Thu, 20 May 2021 02:13:48 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -8871,8 +10569,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8881,51 +10579,53 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c --yes --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/11f8b97e-3e7c-43dc-b0c4-5856efcf65d2?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/11f8b97e-3e7c-43dc-b0c4-5856efcf65d2","name":"11f8b97e-3e7c-43dc-b0c4-5856efcf65d2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.8221696S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000007","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000007","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-20T02:13:26.7579684Z","endTime":"2021-05-20T02:13:48.580138Z","activityId":"f57adb97-b910-11eb-8d73-b07b250bf939"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '905' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:13 GMT + - Thu, 20 May 2021 02:13:49 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8940,45 +10640,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '880' content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:14 GMT + - Thu, 20 May 2021 02:13:50 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8990,43 +10690,41 @@ interactions: - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 response: body: - string: '{}' + string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:12:15 GMT + - Thu, 20 May 2021 02:13:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' x-powered-by: - ASP.NET status: @@ -9046,18 +10744,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9065,11 +10763,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:16 GMT + - Thu, 20 May 2021 02:13:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9079,7 +10777,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '82' x-powered-by: - ASP.NET status: @@ -9099,18 +10797,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9118,11 +10816,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:18 GMT + - Thu, 20 May 2021 02:14:00 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9132,7 +10830,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '81' x-powered-by: - ASP.NET status: @@ -9152,18 +10850,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9171,11 +10869,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:19 GMT + - Thu, 20 May 2021 02:14:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9185,7 +10883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '80' x-powered-by: - ASP.NET status: @@ -9205,18 +10903,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9224,11 +10922,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:20 GMT + - Thu, 20 May 2021 02:14:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9238,7 +10936,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '79' x-powered-by: - ASP.NET status: @@ -9258,18 +10956,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9277,11 +10975,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:21 GMT + - Thu, 20 May 2021 02:14:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9291,7 +10989,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '78' x-powered-by: - ASP.NET status: @@ -9311,18 +11009,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9330,11 +11028,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:22 GMT + - Thu, 20 May 2021 02:14:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9344,7 +11042,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '77' x-powered-by: - ASP.NET status: @@ -9364,18 +11062,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9383,11 +11081,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:24 GMT + - Thu, 20 May 2021 02:14:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9397,7 +11095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '76' x-powered-by: - ASP.NET status: @@ -9417,18 +11115,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9436,11 +11134,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:25 GMT + - Thu, 20 May 2021 02:14:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9450,7 +11148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '75' x-powered-by: - ASP.NET status: @@ -9470,18 +11168,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9489,11 +11187,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:26 GMT + - Thu, 20 May 2021 02:14:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9503,7 +11201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '74' x-powered-by: - ASP.NET status: @@ -9523,18 +11221,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9542,11 +11240,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:28 GMT + - Thu, 20 May 2021 02:14:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9556,7 +11254,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '73' x-powered-by: - ASP.NET status: @@ -9576,18 +11274,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9595,11 +11293,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:29 GMT + - Thu, 20 May 2021 02:14:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9609,7 +11307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '72' x-powered-by: - ASP.NET status: @@ -9629,18 +11327,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9648,11 +11346,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:12:30 GMT + - Thu, 20 May 2021 02:14:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 pragma: - no-cache server: @@ -9662,7 +11360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '71' x-powered-by: - ASP.NET status: @@ -9682,12 +11380,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/c94fd483-6b77-488c-b13b-97ae3a258886?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/efc26bf1-2db0-4354-bc91-d2fce5063d69?api-version=2020-10-01 response: body: string: '' @@ -9697,7 +11395,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:12:31 GMT + - Thu, 20 May 2021 02:14:21 GMT expires: - '-1' pragma: @@ -9707,7 +11405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '70' x-powered-by: - ASP.NET status: @@ -9727,8 +11425,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -9744,7 +11442,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:14:12 GMT + - Thu, 20 May 2021 02:16:13 GMT expires: - '-1' pragma: @@ -9760,7 +11458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -9770,7 +11468,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -9782,10 +11480,7 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: @@ -9797,7 +11492,7 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:14:14 GMT + - Thu, 20 May 2021 02:16:17 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_rp.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_rp.yaml index b44763fff79..e3730229842 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_rp.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_rp.yaml @@ -13,19 +13,16 @@ interactions: Content-Length: - '76' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --location User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-04-20T08%3A00%3A46.0368556Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T01%3A58%3A09.7762129Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -34,7 +31,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:00:45 GMT + - Thu, 20 May 2021 01:58:09 GMT expires: - '-1' pragma: @@ -66,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:00:47.0542172Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:00:47.0542172Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-05-20T01:58:11.0580996Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T01:58:11.0580996Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -80,7 +77,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:09 GMT + - Thu, 20 May 2021 01:58:32 GMT expires: - '-1' pragma: @@ -108,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 x-ms-date: - - Tue, 20 Apr 2021 08:01:09 GMT + - Thu, 20 May 2021 01:58:33 GMT x-ms-share-quota: - '1' x-ms-version: @@ -124,11 +121,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:09 GMT + - Thu, 20 May 2021 01:58:33 GMT etag: - - '"0x8D903D275968C77"' + - '"0x8D91B32C62B6F92"' last-modified: - - Tue, 20 Apr 2021 08:01:10 GMT + - Thu, 20 May 2021 01:58:33 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -150,15 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -167,7 +164,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:10 GMT + - Thu, 20 May 2021 01:58:34 GMT expires: - '-1' pragma: @@ -192,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-04-20T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-05-20T11:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-04-20T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-05-20T11:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -212,15 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -229,7 +226,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:10 GMT + - Thu, 20 May 2021 01:58:34 GMT expires: - '-1' pragma: @@ -245,7 +242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -265,8 +262,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -282,7 +279,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:11 GMT + - Thu, 20 May 2021 01:58:35 GMT expires: - '-1' pragma: @@ -298,7 +295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -318,24 +315,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg7oitcrjdac;clitest3css44lk72ph5o2uo","name":"StorageContainer;Storage;clitest.rg7oitcrjdac;clitest3css44lk72ph5o2uo","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3css44lk72ph5o2uo","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7oitcrjdac/providers/Microsoft.Storage/storageAccounts/clitest3css44lk72ph5o2uo"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgd2nt7ybiah;clitestnuiwq6ur2p3c6xpic","name":"StorageContainer;Storage;clitest.rgd2nt7ybiah;clitestnuiwq6ur2p3c6xpic","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestnuiwq6ur2p3c6xpic","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd2nt7ybiah/providers/Microsoft.Storage/storageAccounts/clitestnuiwq6ur2p3c6xpic"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkan3yc2foi;clitestcjfjsv55rpwf6ly7f","name":"StorageContainer;Storage;clitest.rgkan3yc2foi;clitestcjfjsv55rpwf6ly7f","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcjfjsv55rpwf6ly7f","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkan3yc2foi/providers/Microsoft.Storage/storageAccounts/clitestcjfjsv55rpwf6ly7f"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkcgxxdmcpb;clitestor23bh3frisg2chyj","name":"StorageContainer;Storage;clitest.rgkcgxxdmcpb;clitestor23bh3frisg2chyj","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestor23bh3frisg2chyj","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkcgxxdmcpb/providers/Microsoft.Storage/storageAccounts/clitestor23bh3frisg2chyj"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgkcgxxdmcpb;clitestwjrqtjtnm6npwmh62","name":"StorageContainer;Storage;clitest.rgkcgxxdmcpb;clitestwjrqtjtnm6npwmh62","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestwjrqtjtnm6npwmh62","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkcgxxdmcpb/providers/Microsoft.Storage/storageAccounts/clitestwjrqtjtnm6npwmh62"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgmtoqicuun6;clitestq4thfwiwuxz7u5l64","name":"StorageContainer;Storage;clitest.rgmtoqicuun6;clitestq4thfwiwuxz7u5l64","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestq4thfwiwuxz7u5l64","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmtoqicuun6/providers/Microsoft.Storage/storageAccounts/clitestq4thfwiwuxz7u5l64"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgs422nhpt72;clitestq53ayjz56gz2w3dyq","name":"StorageContainer;Storage;clitest.rgs422nhpt72;clitestq53ayjz56gz2w3dyq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestq53ayjz56gz2w3dyq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs422nhpt72/providers/Microsoft.Storage/storageAccounts/clitestq53ayjz56gz2w3dyq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgx4qlflfe4n;clitestqpulobwt3nr5lvamv","name":"StorageContainer;Storage;clitest.rgx4qlflfe4n;clitestqpulobwt3nr5lvamv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqpulobwt3nr5lvamv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx4qlflfe4n/providers/Microsoft.Storage/storageAccounts/clitestqpulobwt3nr5lvamv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgygxnchhsbw;clitestqdhirdhfznxp3ddvh","name":"StorageContainer;Storage;clitest.rgygxnchhsbw;clitestqdhirdhfznxp3ddvh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestqdhirdhfznxp3ddvh","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgygxnchhsbw/providers/Microsoft.Storage/storageAccounts/clitestqdhirdhfznxp3ddvh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfazjeok6ml;clitesttxaw35hykx6vp7stn","name":"StorageContainer;Storage;clitest.rgfazjeok6ml;clitesttxaw35hykx6vp7stn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesttxaw35hykx6vp7stn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfazjeok6ml/providers/Microsoft.Storage/storageAccounts/clitesttxaw35hykx6vp7stn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: cache-control: - no-cache content-length: - - '13767' + - '12289' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:12 GMT + - Thu, 20 May 2021 01:58:35 GMT expires: - '-1' pragma: @@ -373,8 +370,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: POST @@ -384,17 +381,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:13 GMT + - Thu, 20 May 2021 01:59:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -422,12 +419,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 response: body: string: '' @@ -437,11 +434,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:13 GMT + - Thu, 20 May 2021 01:59:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -449,7 +446,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -469,12 +466,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 response: body: string: '' @@ -484,11 +481,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:14 GMT + - Thu, 20 May 2021 01:59:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -496,7 +493,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -516,12 +513,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 response: body: string: '' @@ -531,11 +528,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:15 GMT + - Thu, 20 May 2021 01:59:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -543,7 +540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '145' x-powered-by: - ASP.NET status: @@ -563,12 +560,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 response: body: string: '' @@ -578,11 +575,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:16 GMT + - Thu, 20 May 2021 01:59:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -590,7 +587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '144' x-powered-by: - ASP.NET status: @@ -610,12 +607,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 response: body: string: '' @@ -625,11 +622,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:18 GMT + - Thu, 20 May 2021 01:59:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -637,7 +634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '143' x-powered-by: - ASP.NET status: @@ -657,12 +654,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 response: body: string: '' @@ -672,11 +669,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:19 GMT + - Thu, 20 May 2021 01:59:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -684,7 +681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '142' x-powered-by: - ASP.NET status: @@ -704,12 +701,12 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 response: body: string: '' @@ -719,11 +716,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:01:20 GMT + - Thu, 20 May 2021 01:59:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -731,7 +728,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '141' x-powered-by: - ASP.NET status: @@ -751,26 +748,22 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/91c750e0-c6be-49ac-af15-169a2c80adf1?api-version=2020-10-01 response: body: string: '' headers: cache-control: - no-cache - content-length: - - '0' date: - - Tue, 20 Apr 2021 08:01:21 GMT + - Thu, 20 May 2021 01:59:11 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -778,12 +771,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '140' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -798,41 +791,48 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","name":"StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2en426ykvrdgnlwkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6n3as6rec5/providers/Microsoft.Storage/storageAccounts/clitest2en426ykvrdgnlwkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfbutzpdcc6;clitestuz6wedvgkxh4nsvaq","name":"StorageContainer;Storage;clitest.rgfbutzpdcc6;clitestuz6wedvgkxh4nsvaq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestuz6wedvgkxh4nsvaq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfbutzpdcc6/providers/Microsoft.Storage/storageAccounts/clitestuz6wedvgkxh4nsvaq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: cache-control: - no-cache content-length: - - '0' + - '13843' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:23 GMT + - Thu, 20 May 2021 01:59:12 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": + "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' headers: Accept: - application/json @@ -842,37 +842,47 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:24 GMT + - Thu, 20 May 2021 01:59:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -892,34 +902,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:25 GMT + - Thu, 20 May 2021 01:59:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '149' x-powered-by: - ASP.NET status: @@ -939,34 +955,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:27 GMT + - Thu, 20 May 2021 01:59:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '148' x-powered-by: - ASP.NET status: @@ -986,34 +1008,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:28 GMT + - Thu, 20 May 2021 01:59:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '147' x-powered-by: - ASP.NET status: @@ -1033,34 +1061,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:29 GMT + - Thu, 20 May 2021 01:59:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '146' x-powered-by: - ASP.NET status: @@ -1080,34 +1114,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:30 GMT + - Thu, 20 May 2021 01:59:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '145' x-powered-by: - ASP.NET status: @@ -1127,34 +1167,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:31 GMT + - Thu, 20 May 2021 01:59:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '144' x-powered-by: - ASP.NET status: @@ -1174,34 +1220,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:33 GMT + - Thu, 20 May 2021 01:59:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '143' x-powered-by: - ASP.NET status: @@ -1221,34 +1273,40 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:34 GMT + - Thu, 20 May 2021 01:59:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '142' x-powered-by: - ASP.NET status: @@ -1268,35 +1326,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/49a3821c-ec08-4952-beab-46913c9749d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:01:35 GMT + - Thu, 20 May 2021 01:59:24 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '141' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -1311,48 +1379,47 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '11969' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:36 GMT + - Thu, 20 May 2021 01:59:52 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' + body: null headers: Accept: - application/json @@ -1362,25 +1429,21 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1388,11 +1451,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:37 GMT + - Thu, 20 May 2021 01:59:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache server: @@ -1401,8 +1464,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' x-powered-by: - ASP.NET status: @@ -1422,18 +1485,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1441,11 +1504,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:37 GMT + - Thu, 20 May 2021 01:59:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache server: @@ -1455,7 +1518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '138' x-powered-by: - ASP.NET status: @@ -1475,18 +1538,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1494,11 +1557,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:39 GMT + - Thu, 20 May 2021 01:59:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache server: @@ -1508,7 +1571,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '137' x-powered-by: - ASP.NET status: @@ -1528,18 +1591,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca674ee5-062b-45a0-9928-888144168706?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1547,11 +1610,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:40 GMT + - Thu, 20 May 2021 01:59:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 pragma: - no-cache server: @@ -1561,7 +1624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '136' x-powered-by: - ASP.NET status: @@ -1581,45 +1644,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca674ee5-062b-45a0-9928-888144168706?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '790' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:41 GMT + - Thu, 20 May 2021 02:00:53 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '134' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1634,45 +1697,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + string: '{"value":[]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '12' content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:43 GMT + - Thu, 20 May 2021 02:00:55 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1684,2001 +1747,46 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{}' + string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/57cda539-63d9-43ac-b1f1-8d5c3b86ffd2?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:01:44 GMT + - Thu, 20 May 2021 02:01:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/57cda539-63d9-43ac-b1f1-8d5c3b86ffd2?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:01:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:01:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:01:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3c7dffb1-6504-4f15-a1a8-53fcb55a569a?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' - headers: - cache-control: - - no-cache - content-length: - - '790' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:01:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' - headers: - cache-control: - - no-cache - content-length: - - '740' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:01:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:01:53 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 20 Apr 2021 08:01:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2020-10-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:01:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:01:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:01:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:01:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/16d69970-4c47-4a70-a95f-0ed38f77c39f?api-version=2020-10-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-type: - - application/json; charset=utf-8 - date: - - Tue, 20 Apr 2021 08:02:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' - x-powered-by: - - ASP.NET - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","name":"azurefileshare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '1039' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", - "protectedItemType": "AzureFileShareProtectedItem"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf?api-version=2020-10-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/operationsStatus/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 20 Apr 2021 08:02:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/operationResults/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3693,45 +1801,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/57cda539-63d9-43ac-b1f1-8d5c3b86ffd2?api-version=2020-10-01 response: body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' content-type: - - application/json + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:02:33 GMT + - Thu, 20 May 2021 02:01:42 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '149' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -3746,24 +1846,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","name":"azurefileshare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1039' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:35 GMT + - Thu, 20 May 2021 02:01:43 GMT expires: - '-1' pragma: @@ -3779,7 +1879,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '149' x-powered-by: - ASP.NET status: @@ -3799,24 +1899,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '740' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:36 GMT + - Thu, 20 May 2021 02:01:44 GMT expires: - '-1' pragma: @@ -3832,14 +1932,16 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", + "protectedItemType": "AzureFileShareProtectedItem"}}' headers: Accept: - application/json @@ -3849,48 +1951,48 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc?api-version=2020-10-01 response: body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/operationsStatus/a523e67e-c3b2-404f-bb5a-db284577f092?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:02:37 GMT + - Thu, 20 May 2021 02:01:44 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/operationResults/a523e67e-c3b2-404f-bb5a-db284577f092?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + x-ms-ratelimit-remaining-subscription-writes: + - '1189' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3905,15 +2007,15 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a523e67e-c3b2-404f-bb5a-db284577f092?api-version=2020-10-01 response: body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a523e67e-c3b2-404f-bb5a-db284577f092","name":"a523e67e-c3b2-404f-bb5a-db284577f092","status":"InProgress","startTime":"2021-05-20T02:01:45.1911417Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3922,7 +2024,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:38 GMT + - Thu, 20 May 2021 02:02:38 GMT expires: - '-1' pragma: @@ -3938,7 +2040,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '149' x-powered-by: - ASP.NET status: @@ -3958,24 +2060,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/a523e67e-c3b2-404f-bb5a-db284577f092?api-version=2020-10-01 response: body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"a523e67e-c3b2-404f-bb5a-db284577f092","name":"a523e67e-c3b2-404f-bb5a-db284577f092","status":"Succeeded","startTime":"2021-05-20T02:01:45.1911417Z","endTime":"2021-05-20T02:01:45.1911417Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"129ac698-71a2-4aa2-89dd-cb2270431bda"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:40 GMT + - Thu, 20 May 2021 02:03:22 GMT expires: - '-1' pragma: @@ -3991,7 +2093,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '148' x-powered-by: - ASP.NET status: @@ -4011,82 +2113,32 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/129ac698-71a2-4aa2-89dd-cb2270431bda?api-version=2020-10-01 response: body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/129ac698-71a2-4aa2-89dd-cb2270431bda","name":"129ac698-71a2-4aa2-89dd-cb2270431bda","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.9633701S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-20T02:01:45.1911417Z","endTime":"2021-05-20T02:02:27.1545118Z","activityId":"e3042ed8-b90e-11eb-876b-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '188' + - '946' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:41 GMT + - Thu, 20 May 2021 02:03:42 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection enable-for-azurefileshare - Connection: - - keep-alive - ParameterSetName: - - -g -v --azure-file-share --storage-account -p - User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 - response: - body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 20 Apr 2021 08:02:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains @@ -4097,7 +2149,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '148' x-powered-by: - ASP.NET status: @@ -4111,30 +2163,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"InProgress","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","name":"AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1352' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:45 GMT + - Thu, 20 May 2021 02:03:44 GMT expires: - '-1' pragma: @@ -4150,65 +2202,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-06-19T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/c0d16ff9-554c-4e2a-8c53-f2652be5453e?api-version=2020-10-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/backup?api-version=2020-10-01 response: body: - string: '{"id":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","name":"c0d16ff9-554c-4e2a-8c53-f2652be5453e","status":"Succeeded","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"2021-04-20T08:02:03.4123886Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"284bd820-08da-4fb4-843d-89a08ebcc166"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/operationsStatus/ccbf2e25-2bbc-4633-a544-3b2b7ef15958?api-version=2020-10-01 cache-control: - no-cache content-length: - - '304' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:02:46 GMT + - Thu, 20 May 2021 02:03:44 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/operationResults/ccbf2e25-2bbc-4633-a544-3b2b7ef15958?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4217,39 +2270,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --azure-file-share --storage-account -p + - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/284bd820-08da-4fb4-843d-89a08ebcc166?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ccbf2e25-2bbc-4633-a544-3b2b7ef15958?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/284bd820-08da-4fb4-843d-89a08ebcc166","name":"284bd820-08da-4fb4-843d-89a08ebcc166","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.9773671S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-04-20T08:02:03.4123886Z","endTime":"2021-04-20T08:02:45.3897557Z","activityId":"924ccd9a-a1ae-11eb-a059-2cf05d45d149"}}' + string: '{"id":"ccbf2e25-2bbc-4633-a544-3b2b7ef15958","name":"ccbf2e25-2bbc-4633-a544-3b2b7ef15958","status":"Succeeded","startTime":"2021-05-20T02:03:44.8791058Z","endTime":"2021-05-20T02:03:44.8791058Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e2769a9a-8a9b-4257-a8c0-f6c9cbfb1730"}}' headers: cache-control: - no-cache content-length: - - '946' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:46 GMT + - Thu, 20 May 2021 02:03:45 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4259,7 +2309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '122' x-powered-by: - ASP.NET status: @@ -4279,30 +2329,33 @@ interactions: ParameterSetName: - -g -v -i -c --backup-management-type --retain-until --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e2769a9a-8a9b-4257-a8c0-f6c9cbfb1730?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","name":"AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e2769a9a-8a9b-4257-a8c0-f6c9cbfb1730","name":"e2769a9a-8a9b-4257-a8c0-f6c9cbfb1730","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.2753828S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-05-20T02:03:44.8791058Z","activityId":"9ab131b1-b90f-11eb-bdb6-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1352' + - '937' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:47 GMT + - Thu, 20 May 2021 02:03:45 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4312,66 +2365,68 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-05-20T00:00:00.000Z"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup job wait Connection: - keep-alive - Content-Length: - - '121' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/backup?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e2769a9a-8a9b-4257-a8c0-f6c9cbfb1730?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e2769a9a-8a9b-4257-a8c0-f6c9cbfb1730","name":"e2769a9a-8a9b-4257-a8c0-f6c9cbfb1730","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.4277786S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-05-20T02:03:44.8791058Z","endTime":"2021-05-20T02:03:47.3068844Z","activityId":"9ab131b1-b90f-11eb-bdb6-b07b250bf939"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/operationsStatus/3bd01e61-29a5-4e90-9067-043fc2191f1e?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '976' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:47 GMT + - Thu, 20 May 2021 02:03:52 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/operationResults/3bd01e61-29a5-4e90-9067-043fc2191f1e?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4380,30 +2435,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query + - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3bd01e61-29a5-4e90-9067-043fc2191f1e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"3bd01e61-29a5-4e90-9067-043fc2191f1e","name":"3bd01e61-29a5-4e90-9067-043fc2191f1e","status":"Succeeded","startTime":"2021-04-20T08:02:48.5025871Z","endTime":"2021-04-20T08:02:48.5025871Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"6eb3ebb5-6023-42f9-a1b2-7eb7f5940270"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","name":"AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:44.8791058Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '1550' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:48 GMT + - Thu, 20 May 2021 02:03:55 GMT expires: - '-1' pragma: @@ -4419,7 +2474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -4433,39 +2488,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -i -c --backup-management-type --retain-until --query + - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6eb3ebb5-6023-42f9-a1b2-7eb7f5940270?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6eb3ebb5-6023-42f9-a1b2-7eb7f5940270","name":"6eb3ebb5-6023-42f9-a1b2-7eb7f5940270","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.164368S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:02:48.5025871Z","activityId":"cb56b712-a1ae-11eb-9549-2cf05d45d149"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/recoveryPoints/2260994886186317157","name":"2260994886186317157","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-05-20T02:03:45Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-05-20T02:03:45.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache content-length: - - '936' + - '874' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:49 GMT + - Thu, 20 May 2021 02:03:56 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4489,39 +2541,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoverypoint show Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6eb3ebb5-6023-42f9-a1b2-7eb7f5940270?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6eb3ebb5-6023-42f9-a1b2-7eb7f5940270","name":"6eb3ebb5-6023-42f9-a1b2-7eb7f5940270","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.6635113S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:02:48.5025871Z","activityId":"cb56b712-a1ae-11eb-9549-2cf05d45d149"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","name":"AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:44.8791058Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '937' + - '1550' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:49 GMT + - Thu, 20 May 2021 02:03: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: @@ -4545,39 +2594,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoverypoint show Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6eb3ebb5-6023-42f9-a1b2-7eb7f5940270?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/recoveryPoints/2260994886186317157?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6eb3ebb5-6023-42f9-a1b2-7eb7f5940270","name":"6eb3ebb5-6023-42f9-a1b2-7eb7f5940270","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.878675S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:02:48.5025871Z","activityId":"cb56b712-a1ae-11eb-9549-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/recoveryPoints/2260994886186317157","name":"2260994886186317157","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-05-20T02:03:45Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-05-20T02:03:45.0000000Z","recoveryPointSizeInGB":0}}' headers: cache-control: - no-cache content-length: - - '936' + - '862' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:49 GMT + - Thu, 20 May 2021 02:04: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: @@ -4587,7 +2633,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -4601,39 +2647,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6eb3ebb5-6023-42f9-a1b2-7eb7f5940270?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/6eb3ebb5-6023-42f9-a1b2-7eb7f5940270","name":"6eb3ebb5-6023-42f9-a1b2-7eb7f5940270","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT3.758695S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-04-20T08:02:48.5025871Z","endTime":"2021-04-20T08:02:52.2612821Z","activityId":"cb56b712-a1ae-11eb-9549-2cf05d45d149"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","name":"AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:44.8791058Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '975' + - '1550' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:20 GMT + - Thu, 20 May 2021 02:04: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: @@ -4643,7 +2686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -4661,26 +2704,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --query + - -g -v -c -i --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","name":"AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:02:48.5025871Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/recoveryPoints/2260994886186317157","name":"2260994886186317157","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-05-20T02:03:45Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-05-20T02:03:45.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache content-length: - - '1550' + - '874' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:50 GMT + - Thu, 20 May 2021 02:04:02 GMT expires: - '-1' pragma: @@ -4710,30 +2753,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --query + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/recoveryPoints?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/recoveryPoints/2261015302972945841","name":"2261015302972945841","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-04-20T08:02:50Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-04-20T08:02:50.0000000Z","recoveryPointSizeInGB":0}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","name":"AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:44.8791058Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '874' + - '1550' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:51 GMT + - Thu, 20 May 2021 02:04:03 GMT expires: - '-1' pragma: @@ -4749,65 +2792,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-06-19T00:00:00.000Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint show + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i -n --backup-management-type + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/backup?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","name":"AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:02:48.5025871Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/operationsStatus/85baea13-c088-47bb-ab67-7ee3800cbca0?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1550' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:52 GMT + - Thu, 20 May 2021 02:04:04 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/operationResults/85baea13-c088-47bb-ab67-7ee3800cbca0?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4816,30 +2860,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint show + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -c -i -n --backup-management-type + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/recoveryPoints/2261015302972945841?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/85baea13-c088-47bb-ab67-7ee3800cbca0?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/recoveryPoints/2261015302972945841","name":"2261015302972945841","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-04-20T08:02:50Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-04-20T08:02:50.0000000Z","recoveryPointSizeInGB":0}}' + string: '{"id":"85baea13-c088-47bb-ab67-7ee3800cbca0","name":"85baea13-c088-47bb-ab67-7ee3800cbca0","status":"Succeeded","startTime":"2021-05-20T02:04:04.3748659Z","endTime":"2021-05-20T02:04:04.3748659Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5"}}' headers: cache-control: - no-cache content-length: - - '862' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:52 GMT + - Thu, 20 May 2021 02:04:04 GMT expires: - '-1' pragma: @@ -4869,36 +2913,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","name":"AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:02:48.5025871Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5","name":"1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.2554008S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-05-20T02:04:04.3748659Z","activityId":"a64f1e9a-b90f-11eb-8d36-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1550' + - '937' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:53 GMT + - Thu, 20 May 2021 02:04: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: @@ -4922,36 +2969,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/recoveryPoints?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/recoveryPoints/2261015302972945841","name":"2261015302972945841","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-04-20T08:02:50Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-04-20T08:02:50.0000000Z","recoveryPointSizeInGB":0}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5","name":"1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.8048334S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-05-20T02:04:04.3748659Z","activityId":"a64f1e9a-b90f-11eb-8d36-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '874' + - '937' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:54 GMT + - Thu, 20 May 2021 02:04:06 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4975,36 +3025,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","name":"AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:02:48.5025871Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5","name":"1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.0448793S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-05-20T02:04:04.3748659Z","activityId":"a64f1e9a-b90f-11eb-8d36-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1550' + - '937' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:55 GMT + - Thu, 20 May 2021 02:04:06 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -5014,66 +3067,68 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-05-20T00:00:00.000Z"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup job wait Connection: - keep-alive - Content-Length: - - '121' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/backup?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5","name":"1c0d37e9-e9a2-46d4-b3b8-ceba61f14fd5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.5707543S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-05-20T02:04:04.3748659Z","endTime":"2021-05-20T02:04:06.9456202Z","activityId":"a64f1e9a-b90f-11eb-8d36-b07b250bf939"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/operationsStatus/1dd72f5e-4b3b-4df1-a035-ca76f30ec613?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '976' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:55 GMT + - Thu, 20 May 2021 02:04:36 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/operationResults/1dd72f5e-4b3b-4df1-a035-ca76f30ec613?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '147' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5082,30 +3137,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query + - -g -v -c -i --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/1dd72f5e-4b3b-4df1-a035-ca76f30ec613?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"1dd72f5e-4b3b-4df1-a035-ca76f30ec613","name":"1dd72f5e-4b3b-4df1-a035-ca76f30ec613","status":"Succeeded","startTime":"2021-04-20T08:03:55.9309104Z","endTime":"2021-04-20T08:03:55.9309104Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"afd39cad-e419-409a-93fc-c69b339079e9"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","name":"AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:04:04.3748659Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '1550' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:55 GMT + - Thu, 20 May 2021 02:05:06 GMT expires: - '-1' pragma: @@ -5121,7 +3176,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '148' x-powered-by: - ASP.NET status: @@ -5135,39 +3190,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query + - -g -v -c -i --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/afd39cad-e419-409a-93fc-c69b339079e9?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/afd39cad-e419-409a-93fc-c69b339079e9","name":"afd39cad-e419-409a-93fc-c69b339079e9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.0439162S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:03:55.9309104Z","activityId":"f3a5181c-a1ae-11eb-84dd-2cf05d45d149"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/recoveryPoints/2260988956263704072","name":"2260988956263704072","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-05-20T02:04:05Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-05-20T02:04:05.0000000Z","recoveryPointSizeInGB":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc/recoveryPoints/2260994886186317157","name":"2260994886186317157","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-05-20T02:03:45Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-05-20T02:03:45.0000000Z","recoveryPointSizeInGB":0}}]}' headers: cache-control: - no-cache content-length: - - '937' + - '1737' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:56 GMT + - Thu, 20 May 2021 02:05: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: @@ -5177,7 +3229,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -5191,39 +3243,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/afd39cad-e419-409a-93fc-c69b339079e9?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/afd39cad-e419-409a-93fc-c69b339079e9","name":"afd39cad-e419-409a-93fc-c69b339079e9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.5981664S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:03:55.9309104Z","activityId":"f3a5181c-a1ae-11eb-84dd-2cf05d45d149"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","name":"AzureFileShare;9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:04:04.3748659Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '937' + - '1550' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:56 GMT + - Thu, 20 May 2021 02:05: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: @@ -5247,54 +3296,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/afd39cad-e419-409a-93fc-c69b339079e9?api-version=2020-10-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B9d185ea862ae2bd70746691107061a0549e752c06f924d579e5cb6386eecc0cc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/afd39cad-e419-409a-93fc-c69b339079e9","name":"afd39cad-e419-409a-93fc-c69b339079e9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.8462711S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:03:55.9309104Z","activityId":"f3a5181c-a1ae-11eb-84dd-2cf05d45d149"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 cache-control: - no-cache content-length: - - '937' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:57 GMT + - Thu, 20 May 2021 02:05:08 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 + - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5303,39 +3347,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/afd39cad-e419-409a-93fc-c69b339079e9?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/afd39cad-e419-409a-93fc-c69b339079e9","name":"afd39cad-e419-409a-93fc-c69b339079e9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1756235S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-04-20T08:03:55.9309104Z","endTime":"2021-04-20T08:03:58.1065339Z","activityId":"f3a5181c-a1ae-11eb-84dd-2cf05d45d149"}}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '976' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:27 GMT + - Thu, 20 May 2021 02:05: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: @@ -5345,7 +3386,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -5359,30 +3400,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","name":"AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:55.9309104Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1550' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:58 GMT + - Thu, 20 May 2021 02:05:10 GMT expires: - '-1' pragma: @@ -5398,7 +3439,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '148' x-powered-by: - ASP.NET status: @@ -5412,30 +3453,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/recoveryPoints?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/recoveryPoints/2261013759918898775","name":"2261013759918898775","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-04-20T08:03:56Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-04-20T08:03:56.0000000Z","recoveryPointSizeInGB":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf/recoveryPoints/2261015302972945841","name":"2261015302972945841","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-04-20T08:02:50Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-04-20T08:02:50.0000000Z","recoveryPointSizeInGB":0}}]}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1737' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:58 GMT + - Thu, 20 May 2021 02:05:11 GMT expires: - '-1' pragma: @@ -5451,7 +3492,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -5471,24 +3512,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","name":"AzureFileShare;180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:55.9309104Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1550' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:00 GMT + - Thu, 20 May 2021 02:05:13 GMT expires: - '-1' pragma: @@ -5504,7 +3545,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -5521,46 +3562,48 @@ interactions: - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B180b14c079673d2b74bed5fd4e67f94fe2d3b7493f662fb2eb61054783d25caf?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:05:01 GMT + - Thu, 20 May 2021 02:05:14 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -5575,15 +3618,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5592,7 +3635,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:01 GMT + - Thu, 20 May 2021 02:05:15 GMT expires: - '-1' pragma: @@ -5608,7 +3651,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -5628,15 +3671,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5645,7 +3688,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:03 GMT + - Thu, 20 May 2021 02:05:17 GMT expires: - '-1' pragma: @@ -5661,7 +3704,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '143' x-powered-by: - ASP.NET status: @@ -5681,15 +3724,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5698,7 +3741,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:04 GMT + - Thu, 20 May 2021 02:05:18 GMT expires: - '-1' pragma: @@ -5714,7 +3757,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '142' x-powered-by: - ASP.NET status: @@ -5734,15 +3777,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5751,7 +3794,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:05 GMT + - Thu, 20 May 2021 02:05:19 GMT expires: - '-1' pragma: @@ -5767,7 +3810,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '141' x-powered-by: - ASP.NET status: @@ -5787,15 +3830,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5804,7 +3847,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:06 GMT + - Thu, 20 May 2021 02:05:20 GMT expires: - '-1' pragma: @@ -5820,7 +3863,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '140' x-powered-by: - ASP.NET status: @@ -5840,15 +3883,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5857,7 +3900,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:08 GMT + - Thu, 20 May 2021 02:05:22 GMT expires: - '-1' pragma: @@ -5873,7 +3916,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '139' x-powered-by: - ASP.NET status: @@ -5893,15 +3936,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5910,7 +3953,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:09 GMT + - Thu, 20 May 2021 02:05:23 GMT expires: - '-1' pragma: @@ -5926,7 +3969,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '138' x-powered-by: - ASP.NET status: @@ -5946,15 +3989,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5963,7 +4006,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:10 GMT + - Thu, 20 May 2021 02:05:24 GMT expires: - '-1' pragma: @@ -5979,7 +4022,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '137' x-powered-by: - ASP.NET status: @@ -5999,15 +4042,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6016,7 +4059,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:11 GMT + - Thu, 20 May 2021 02:05:25 GMT expires: - '-1' pragma: @@ -6032,7 +4075,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '136' x-powered-by: - ASP.NET status: @@ -6052,15 +4095,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6069,7 +4112,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:12 GMT + - Thu, 20 May 2021 02:05:26 GMT expires: - '-1' pragma: @@ -6085,7 +4128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '135' x-powered-by: - ASP.NET status: @@ -6105,15 +4148,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6122,7 +4165,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:14 GMT + - Thu, 20 May 2021 02:05:28 GMT expires: - '-1' pragma: @@ -6138,7 +4181,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '134' x-powered-by: - ASP.NET status: @@ -6158,15 +4201,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"InProgress","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -6175,7 +4218,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:15 GMT + - Thu, 20 May 2021 02:05:29 GMT expires: - '-1' pragma: @@ -6191,7 +4234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '133' x-powered-by: - ASP.NET status: @@ -6211,24 +4254,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2f0dbcfd-c0ee-45c4-8566-9f96e81bca19?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","name":"2f0dbcfd-c0ee-45c4-8566-9f96e81bca19","status":"Succeeded","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"2021-05-20T02:05:09.4034488Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"0cb84597-d981-4d68-8492-52e6be46cf5a"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:16 GMT + - Thu, 20 May 2021 02:05:30 GMT expires: - '-1' pragma: @@ -6244,7 +4287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '132' x-powered-by: - ASP.NET status: @@ -6264,30 +4307,32 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0cb84597-d981-4d68-8492-52e6be46cf5a?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/0cb84597-d981-4d68-8492-52e6be46cf5a","name":"0cb84597-d981-4d68-8492-52e6be46cf5a","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.2771097S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-20T02:05:09.4034488Z","endTime":"2021-05-20T02:05:30.6805585Z","activityId":"cd160c23-b90f-11eb-bf08-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '188' + - '906' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:18 GMT + - Thu, 20 May 2021 02:05: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: @@ -6297,7 +4342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '149' x-powered-by: - ASP.NET status: @@ -6311,30 +4356,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '880' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:19 GMT + - Thu, 20 May 2021 02:05:31 GMT expires: - '-1' pragma: @@ -6350,7 +4395,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '149' x-powered-by: - ASP.NET status: @@ -6364,51 +4409,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:05:20 GMT + - Thu, 20 May 2021 02:05:33 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + x-ms-ratelimit-remaining-subscription-deletes: + - '14997' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6417,51 +4460,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"InProgress","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:21 GMT + - Thu, 20 May 2021 02:05:33 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '149' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6470,51 +4513,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/31c8c31e-dbec-4973-9122-380d21190642?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: - string: '{"id":"31c8c31e-dbec-4973-9122-380d21190642","name":"31c8c31e-dbec-4973-9122-380d21190642","status":"Succeeded","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"2021-04-20T08:05:01.7625303Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"741ddf56-6d1b-4f34-9345-8dd98dc0d373"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '304' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:22 GMT + - Thu, 20 May 2021 02:05:34 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '148' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6523,53 +4566,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/741ddf56-6d1b-4f34-9345-8dd98dc0d373?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/741ddf56-6d1b-4f34-9345-8dd98dc0d373","name":"741ddf56-6d1b-4f34-9345-8dd98dc0d373","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.165644S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-04-20T08:05:01.7625303Z","endTime":"2021-04-20T08:05:22.9281743Z","activityId":"1a081ce4-a1af-11eb-a57c-2cf05d45d149"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '905' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:23 GMT + - Thu, 20 May 2021 02:05:35 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '147' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6584,45 +4625,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '880' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:23 GMT + - Thu, 20 May 2021 02:05:36 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6634,41 +4675,43 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:05:24 GMT + - Thu, 20 May 2021 02:05:38 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?fabricName=Azure?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '145' x-powered-by: - ASP.NET status: @@ -6688,18 +4731,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6707,11 +4750,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:25 GMT + - Thu, 20 May 2021 02:05:39 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -6721,7 +4764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '144' x-powered-by: - ASP.NET status: @@ -6741,18 +4784,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6760,11 +4803,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:26 GMT + - Thu, 20 May 2021 02:05:40 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -6774,7 +4817,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '143' x-powered-by: - ASP.NET status: @@ -6794,18 +4837,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6813,11 +4856,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:27 GMT + - Thu, 20 May 2021 02:05:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -6827,7 +4870,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '142' x-powered-by: - ASP.NET status: @@ -6847,18 +4890,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6866,11 +4909,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:29 GMT + - Thu, 20 May 2021 02:05:43 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -6880,7 +4923,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '141' x-powered-by: - ASP.NET status: @@ -6900,18 +4943,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6919,11 +4962,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:30 GMT + - Thu, 20 May 2021 02:05:45 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -6933,7 +4976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '140' x-powered-by: - ASP.NET status: @@ -6953,18 +4996,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6972,11 +5015,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:31 GMT + - Thu, 20 May 2021 02:05:46 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -6986,7 +5029,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '139' x-powered-by: - ASP.NET status: @@ -7006,18 +5049,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7025,11 +5068,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:32 GMT + - Thu, 20 May 2021 02:05:48 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7039,7 +5082,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '138' x-powered-by: - ASP.NET status: @@ -7059,18 +5102,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7078,11 +5121,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:34 GMT + - Thu, 20 May 2021 02:05:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7092,7 +5135,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '137' x-powered-by: - ASP.NET status: @@ -7112,18 +5155,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7131,11 +5174,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:35 GMT + - Thu, 20 May 2021 02:05:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7145,7 +5188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '136' x-powered-by: - ASP.NET status: @@ -7165,18 +5208,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7184,11 +5227,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:36 GMT + - Thu, 20 May 2021 02:05:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7198,7 +5241,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '135' x-powered-by: - ASP.NET status: @@ -7218,18 +5261,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7237,11 +5280,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:37 GMT + - Thu, 20 May 2021 02:05:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7251,7 +5294,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '134' x-powered-by: - ASP.NET status: @@ -7271,18 +5314,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7290,11 +5333,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:38 GMT + - Thu, 20 May 2021 02:05:54 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7304,7 +5347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '133' x-powered-by: - ASP.NET status: @@ -7324,18 +5367,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7343,11 +5386,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:40 GMT + - Thu, 20 May 2021 02:05:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7357,7 +5400,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '132' x-powered-by: - ASP.NET status: @@ -7377,18 +5420,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7396,11 +5439,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:41 GMT + - Thu, 20 May 2021 02:05:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7410,7 +5453,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '131' x-powered-by: - ASP.NET status: @@ -7430,18 +5473,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7449,11 +5492,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:42 GMT + - Thu, 20 May 2021 02:05:58 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7463,7 +5506,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '130' x-powered-by: - ASP.NET status: @@ -7483,18 +5526,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7502,11 +5545,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:43 GMT + - Thu, 20 May 2021 02:05:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7516,7 +5559,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '129' x-powered-by: - ASP.NET status: @@ -7536,18 +5579,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7555,11 +5598,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:45 GMT + - Thu, 20 May 2021 02:06:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7569,7 +5612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '128' x-powered-by: - ASP.NET status: @@ -7589,18 +5632,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -7608,11 +5651,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:46 GMT + - Thu, 20 May 2021 02:06:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 pragma: - no-cache server: @@ -7622,7 +5665,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '127' x-powered-by: - ASP.NET status: @@ -7642,12 +5685,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ce8ef52e-7b5a-401d-8d07-dccd9fdd1127?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/990fdd24-927e-4e8a-a4ef-b56e68aadfa8?api-version=2020-10-01 response: body: string: '' @@ -7657,7 +5700,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:05:47 GMT + - Thu, 20 May 2021 02:06:03 GMT expires: - '-1' pragma: @@ -7667,7 +5710,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '126' x-powered-by: - ASP.NET status: @@ -7687,8 +5730,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -7704,7 +5747,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:28 GMT + - Thu, 20 May 2021 02:07:43 GMT expires: - '-1' pragma: @@ -7720,7 +5763,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -7730,7 +5773,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -7742,10 +5785,7 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: @@ -7757,7 +5797,7 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:07:29 GMT + - Thu, 20 May 2021 02:07:45 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_scenario.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_scenario.yaml index 2f3ebe37265..79f6cfcef6c 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_backup_scenario.yaml @@ -13,19 +13,16 @@ interactions: Content-Length: - '76' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --location User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-04-20T08%3A01%3A51.6672363Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T01%3A58%3A09.8082432Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -34,7 +31,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:01:51 GMT + - Thu, 20 May 2021 01:58:09 GMT expires: - '-1' pragma: @@ -66,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:01:52.6174917Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:01:52.6174917Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-05-20T01:58:11.1049896Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T01:58:11.1049896Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -80,7 +77,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:19 GMT + - Thu, 20 May 2021 01:58:32 GMT expires: - '-1' pragma: @@ -108,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 x-ms-date: - - Tue, 20 Apr 2021 08:02:20 GMT + - Thu, 20 May 2021 01:58:33 GMT x-ms-share-quota: - '1' x-ms-version: @@ -124,11 +121,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:02:20 GMT + - Thu, 20 May 2021 01:58:33 GMT etag: - - '"0x8D903D29FFEE08F"' + - '"0x8D91B32C6304EA3"' last-modified: - - Tue, 20 Apr 2021 08:02:21 GMT + - Thu, 20 May 2021 01:58:33 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -150,15 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -167,7 +164,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:21 GMT + - Thu, 20 May 2021 01:58:33 GMT expires: - '-1' pragma: @@ -183,7 +180,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -192,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-04-20T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-05-20T11:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-04-20T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-05-20T11:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -212,15 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -229,7 +226,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:22 GMT + - Thu, 20 May 2021 01:58:34 GMT expires: - '-1' pragma: @@ -245,7 +242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -265,8 +262,8 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -282,7 +279,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:22 GMT + - Thu, 20 May 2021 01:59:02 GMT expires: - '-1' pragma: @@ -298,7 +295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -318,24 +315,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","name":"StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2en426ykvrdgnlwkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6n3as6rec5/providers/Microsoft.Storage/storageAccounts/clitest2en426ykvrdgnlwkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgptrybj4fg5;clitest4cli4nyytkxxlu4ek","name":"StorageContainer;Storage;clitest.rgptrybj4fg5;clitest4cli4nyytkxxlu4ek","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest4cli4nyytkxxlu4ek","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptrybj4fg5/providers/Microsoft.Storage/storageAccounts/clitest4cli4nyytkxxlu4ek"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgvtweopx7lj;clitest3i2mzfioctu3nfznl","name":"StorageContainer;Storage;clitest.rgvtweopx7lj;clitest3i2mzfioctu3nfznl","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3i2mzfioctu3nfznl","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvtweopx7lj/providers/Microsoft.Storage/storageAccounts/clitest3i2mzfioctu3nfznl"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwnfnpizbl2;clitestts4wdnvuga7ucdpzc","name":"StorageContainer;Storage;clitest.rgwnfnpizbl2;clitestts4wdnvuga7ucdpzc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestts4wdnvuga7ucdpzc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwnfnpizbl2/providers/Microsoft.Storage/storageAccounts/clitestts4wdnvuga7ucdpzc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgx6nhebyjey;clitestux2ymb66djm27xvw6","name":"StorageContainer;Storage;clitest.rgx6nhebyjey;clitestux2ymb66djm27xvw6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestux2ymb66djm27xvw6","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx6nhebyjey/providers/Microsoft.Storage/storageAccounts/clitestux2ymb66djm27xvw6"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: cache-control: - no-cache content-length: - - '11192' + - '16174' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:22 GMT + - Thu, 20 May 2021 01:59:01 GMT expires: - '-1' pragma: @@ -358,7 +355,8 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": + "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' headers: Accept: - application/json @@ -369,40 +367,46 @@ interactions: Connection: - keep-alive Content-Length: - - '0' + - '273' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:25 GMT + - Thu, 20 May 2021 01:59:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -422,28 +426,34 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:25 GMT + - Thu, 20 May 2021 01:59:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -469,34 +479,40 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:26 GMT + - Thu, 20 May 2021 01:59:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '147' x-powered-by: - ASP.NET status: @@ -516,34 +532,40 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:27 GMT + - Thu, 20 May 2021 01:59:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '145' x-powered-by: - ASP.NET status: @@ -563,34 +585,40 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:28 GMT + - Thu, 20 May 2021 01:59:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '143' x-powered-by: - ASP.NET status: @@ -610,34 +638,40 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:30 GMT + - Thu, 20 May 2021 01:59:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '141' x-powered-by: - ASP.NET status: @@ -657,34 +691,40 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:31 GMT + - Thu, 20 May 2021 01:59:10 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '139' x-powered-by: - ASP.NET status: @@ -704,34 +744,40 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:32 GMT + - Thu, 20 May 2021 01:59:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '137' x-powered-by: - ASP.NET status: @@ -751,34 +797,40 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:34 GMT + - Thu, 20 May 2021 01:59:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '135' x-powered-by: - ASP.NET status: @@ -798,35 +850,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/5a9d1143-e8d9-4e51-8891-e47be0dcdfb4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:35 GMT + - Thu, 20 May 2021 01:59:13 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '133' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -841,48 +903,47 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '11969' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:36 GMT + - Thu, 20 May 2021 01:59:15 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '131' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' + body: null headers: Accept: - application/json @@ -892,25 +953,21 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '273' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bb206833-712e-47d3-9412-03c3039719c2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -918,11 +975,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:37 GMT + - Thu, 20 May 2021 01:59:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -931,8 +988,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' x-powered-by: - ASP.NET status: @@ -952,18 +1009,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bb206833-712e-47d3-9412-03c3039719c2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -971,11 +1028,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:37 GMT + - Thu, 20 May 2021 01:59:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -985,7 +1042,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '127' x-powered-by: - ASP.NET status: @@ -1005,18 +1062,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bb206833-712e-47d3-9412-03c3039719c2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1024,11 +1081,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:38 GMT + - Thu, 20 May 2021 01:59:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1038,7 +1095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '125' x-powered-by: - ASP.NET status: @@ -1058,18 +1115,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bb206833-712e-47d3-9412-03c3039719c2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1077,11 +1134,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:40 GMT + - Thu, 20 May 2021 01:59:20 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1091,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '123' x-powered-by: - ASP.NET status: @@ -1111,18 +1168,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bb206833-712e-47d3-9412-03c3039719c2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1130,11 +1187,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:41 GMT + - Thu, 20 May 2021 01:59:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1144,7 +1201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '121' x-powered-by: - ASP.NET status: @@ -1164,18 +1221,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bb206833-712e-47d3-9412-03c3039719c2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1183,11 +1240,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:42 GMT + - Thu, 20 May 2021 01:59:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1197,7 +1254,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '119' x-powered-by: - ASP.NET status: @@ -1217,18 +1274,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bb206833-712e-47d3-9412-03c3039719c2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1236,11 +1293,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:44 GMT + - Thu, 20 May 2021 01:59:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1250,7 +1307,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '117' x-powered-by: - ASP.NET status: @@ -1270,18 +1327,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bb206833-712e-47d3-9412-03c3039719c2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1289,11 +1346,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:46 GMT + - Thu, 20 May 2021 01:59:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1303,7 +1360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '115' x-powered-by: - ASP.NET status: @@ -1323,18 +1380,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bb206833-712e-47d3-9412-03c3039719c2?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1342,11 +1399,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:47 GMT + - Thu, 20 May 2021 01:59:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1356,7 +1413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '113' x-powered-by: - ASP.NET status: @@ -1376,45 +1433,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bb206833-712e-47d3-9412-03c3039719c2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:48 GMT + - Thu, 20 May 2021 01:59:27 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '111' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1429,45 +1486,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:49 GMT + - Thu, 20 May 2021 01:59:28 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '109' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1482,45 +1539,45 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:50 GMT + - Thu, 20 May 2021 01:59:29 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '107' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1532,41 +1589,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:50 GMT + - Thu, 20 May 2021 01:59:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' x-powered-by: - ASP.NET status: @@ -1586,18 +1645,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1605,11 +1664,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:51 GMT + - Thu, 20 May 2021 01:59:32 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1619,7 +1678,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '103' x-powered-by: - ASP.NET status: @@ -1639,18 +1698,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1658,11 +1717,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:53 GMT + - Thu, 20 May 2021 01:59:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1672,7 +1731,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '101' x-powered-by: - ASP.NET status: @@ -1692,18 +1751,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1711,11 +1770,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:54 GMT + - Thu, 20 May 2021 01:59:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1725,7 +1784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '99' x-powered-by: - ASP.NET status: @@ -1745,18 +1804,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1764,11 +1823,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:55 GMT + - Thu, 20 May 2021 01:59:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1778,7 +1837,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '97' x-powered-by: - ASP.NET status: @@ -1798,18 +1857,18 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1817,11 +1876,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:56 GMT + - Thu, 20 May 2021 01:59:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache server: @@ -1831,7 +1890,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '95' x-powered-by: - ASP.NET status: @@ -1851,32 +1910,1620 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/bd24e215-8d25-4ec2-a818-b0569654f8dc?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:02:57 GMT + - Thu, 20 May 2021 01:59:38 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '89' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '84' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:45 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '82' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '80' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '78' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '76' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '74' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '72' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '70' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '68' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '66' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '64' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '62' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '60' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:59 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '58' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '56' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '54' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '52' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:04 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '50' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '48' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '46' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '44' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:09 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '42' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:10 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '40' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/3ac67295-f7c9-4c02-9dde-9221dc8dab79?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + headers: + cache-control: + - no-cache + content-length: + - '790' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '38' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + response: + body: + string: '{"value":[]}' + headers: + cache-control: + - no-cache + content-length: + - '12' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ca88a073-030d-4cd5-9534-f52cba9357b5?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 20 May 2021 02:00:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ca88a073-030d-4cd5-9534-f52cba9357b5?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ca88a073-030d-4cd5-9534-f52cba9357b5?api-version=2020-10-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 May 2021 02:00:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: @@ -1896,24 +3543,77 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812","name":"azurefileshare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1039' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '148' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --storage-account --azure-file-share -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f","name":"azurefileshare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '1039' + - '740' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:58 GMT + - Thu, 20 May 2021 02:01:42 GMT expires: - '-1' pragma: @@ -1929,7 +3629,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -1955,28 +3655,28 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3Bb401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f/operationsStatus/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812/operationsStatus/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:02:58 GMT + - Thu, 20 May 2021 02:02:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f/operationResults/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812/operationResults/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1984,7 +3684,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -2004,15 +3704,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2021,7 +3721,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:59 GMT + - Thu, 20 May 2021 02:02:27 GMT expires: - '-1' pragma: @@ -2037,7 +3737,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '149' x-powered-by: - ASP.NET status: @@ -2057,15 +3757,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2074,7 +3774,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:00 GMT + - Thu, 20 May 2021 02:02:29 GMT expires: - '-1' pragma: @@ -2090,7 +3790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '148' x-powered-by: - ASP.NET status: @@ -2110,15 +3810,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2127,7 +3827,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:02 GMT + - Thu, 20 May 2021 02:02:30 GMT expires: - '-1' pragma: @@ -2143,7 +3843,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '147' x-powered-by: - ASP.NET status: @@ -2163,15 +3863,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2180,7 +3880,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:03 GMT + - Thu, 20 May 2021 02:02:31 GMT expires: - '-1' pragma: @@ -2196,7 +3896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '146' x-powered-by: - ASP.NET status: @@ -2216,15 +3916,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2233,7 +3933,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:05 GMT + - Thu, 20 May 2021 02:02:32 GMT expires: - '-1' pragma: @@ -2249,7 +3949,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '145' x-powered-by: - ASP.NET status: @@ -2269,15 +3969,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2286,7 +3986,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:06 GMT + - Thu, 20 May 2021 02:02:34 GMT expires: - '-1' pragma: @@ -2302,7 +4002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '144' x-powered-by: - ASP.NET status: @@ -2322,15 +4022,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2339,7 +4039,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:07 GMT + - Thu, 20 May 2021 02:02:35 GMT expires: - '-1' pragma: @@ -2355,7 +4055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '143' x-powered-by: - ASP.NET status: @@ -2375,15 +4075,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2392,7 +4092,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:09 GMT + - Thu, 20 May 2021 02:02:36 GMT expires: - '-1' pragma: @@ -2408,7 +4108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '142' x-powered-by: - ASP.NET status: @@ -2428,15 +4128,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2445,7 +4145,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:10 GMT + - Thu, 20 May 2021 02:02:37 GMT expires: - '-1' pragma: @@ -2461,7 +4161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '141' x-powered-by: - ASP.NET status: @@ -2481,15 +4181,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2498,7 +4198,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:12 GMT + - Thu, 20 May 2021 02:02:38 GMT expires: - '-1' pragma: @@ -2514,7 +4214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '140' x-powered-by: - ASP.NET status: @@ -2534,15 +4234,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2551,7 +4251,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:13 GMT + - Thu, 20 May 2021 02:02:40 GMT expires: - '-1' pragma: @@ -2567,7 +4267,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '139' x-powered-by: - ASP.NET status: @@ -2587,15 +4287,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2604,7 +4304,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:14 GMT + - Thu, 20 May 2021 02:02:41 GMT expires: - '-1' pragma: @@ -2620,7 +4320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '138' x-powered-by: - ASP.NET status: @@ -2640,15 +4340,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2657,7 +4357,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:15 GMT + - Thu, 20 May 2021 02:02:42 GMT expires: - '-1' pragma: @@ -2673,7 +4373,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '137' x-powered-by: - ASP.NET status: @@ -2693,15 +4393,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2710,7 +4410,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:17 GMT + - Thu, 20 May 2021 02:02:43 GMT expires: - '-1' pragma: @@ -2726,7 +4426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '136' x-powered-by: - ASP.NET status: @@ -2746,15 +4446,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2763,7 +4463,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:18 GMT + - Thu, 20 May 2021 02:02:45 GMT expires: - '-1' pragma: @@ -2779,7 +4479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '135' x-powered-by: - ASP.NET status: @@ -2799,15 +4499,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2816,7 +4516,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:19 GMT + - Thu, 20 May 2021 02:02:46 GMT expires: - '-1' pragma: @@ -2832,7 +4532,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '134' x-powered-by: - ASP.NET status: @@ -2852,15 +4552,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2869,7 +4569,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:20 GMT + - Thu, 20 May 2021 02:02:47 GMT expires: - '-1' pragma: @@ -2885,7 +4585,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '133' x-powered-by: - ASP.NET status: @@ -2905,15 +4605,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2922,7 +4622,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:21 GMT + - Thu, 20 May 2021 02:02:48 GMT expires: - '-1' pragma: @@ -2938,7 +4638,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '132' x-powered-by: - ASP.NET status: @@ -2958,15 +4658,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2975,7 +4675,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:23 GMT + - Thu, 20 May 2021 02:02:50 GMT expires: - '-1' pragma: @@ -2991,7 +4691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '131' x-powered-by: - ASP.NET status: @@ -3011,15 +4711,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3028,7 +4728,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:24 GMT + - Thu, 20 May 2021 02:02:51 GMT expires: - '-1' pragma: @@ -3044,7 +4744,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '130' x-powered-by: - ASP.NET status: @@ -3064,15 +4764,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3081,7 +4781,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:25 GMT + - Thu, 20 May 2021 02:02:52 GMT expires: - '-1' pragma: @@ -3097,7 +4797,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '129' x-powered-by: - ASP.NET status: @@ -3117,15 +4817,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3134,7 +4834,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:27 GMT + - Thu, 20 May 2021 02:02:53 GMT expires: - '-1' pragma: @@ -3150,7 +4850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '128' x-powered-by: - ASP.NET status: @@ -3170,15 +4870,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3187,7 +4887,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:28 GMT + - Thu, 20 May 2021 02:02:54 GMT expires: - '-1' pragma: @@ -3203,7 +4903,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '127' x-powered-by: - ASP.NET status: @@ -3223,15 +4923,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3240,7 +4940,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:29 GMT + - Thu, 20 May 2021 02:02:56 GMT expires: - '-1' pragma: @@ -3256,7 +4956,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '126' x-powered-by: - ASP.NET status: @@ -3276,15 +4976,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3293,7 +4993,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:30 GMT + - Thu, 20 May 2021 02:02:57 GMT expires: - '-1' pragma: @@ -3309,7 +5009,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '125' x-powered-by: - ASP.NET status: @@ -3329,15 +5029,15 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"InProgress","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3346,7 +5046,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:31 GMT + - Thu, 20 May 2021 02:02:58 GMT expires: - '-1' pragma: @@ -3362,7 +5062,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '124' x-powered-by: - ASP.NET status: @@ -3382,24 +5082,24 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/aa2656f8-74b0-4601-9fda-85e0294f6bd3?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","name":"aa2656f8-74b0-4601-9fda-85e0294f6bd3","status":"Succeeded","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"2021-05-20T02:02:17.6136615Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"3627c986-5b47-4b9f-92b1-9e3c1d25c214"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:33 GMT + - Thu, 20 May 2021 02:02:59 GMT expires: - '-1' pragma: @@ -3415,7 +5115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '123' x-powered-by: - ASP.NET status: @@ -3435,30 +5135,33 @@ interactions: ParameterSetName: - -g -v --storage-account --azure-file-share -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3627c986-5b47-4b9f-92b1-9e3c1d25c214?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/3627c986-5b47-4b9f-92b1-9e3c1d25c214","name":"3627c986-5b47-4b9f-92b1-9e3c1d25c214","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.051331S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-20T02:02:17.6136615Z","endTime":"2021-05-20T02:02:59.6649925Z","activityId":"e2f7420b-b90e-11eb-8a79-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '188' + - '945' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:34 GMT + - Thu, 20 May 2021 02:03:00 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3468,7 +5171,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '149' x-powered-by: - ASP.NET status: @@ -3482,30 +5185,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --storage-account --azure-file-share -p + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812","name":"AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1352' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:35 GMT + - Thu, 20 May 2021 02:03:01 GMT expires: - '-1' pragma: @@ -3521,12 +5224,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK +- request: + body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": + "2021-06-19T00:00:00.000Z"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection backup-now + Connection: + - keep-alive + Content-Length: + - '121' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v -c -i --retain-until --backup-management-type --query + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bb401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812/backup?api-version=2020-10-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812/operationsStatus/4e8a144b-64bf-4ecf-a410-5e62a6ef4a47?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 20 May 2021 02:03:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812/operationResults/4e8a144b-64bf-4ecf-a410-5e62a6ef4a47?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -3535,30 +5292,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --storage-account --azure-file-share -p + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/4e8a144b-64bf-4ecf-a410-5e62a6ef4a47?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"4e8a144b-64bf-4ecf-a410-5e62a6ef4a47","name":"4e8a144b-64bf-4ecf-a410-5e62a6ef4a47","status":"Succeeded","startTime":"2021-05-20T02:03:02.6234849Z","endTime":"2021-05-20T02:03:02.6234849Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"e849792a-d127-438f-beed-6991be7b8871"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:36 GMT + - Thu, 20 May 2021 02:03:02 GMT expires: - '-1' pragma: @@ -3574,7 +5331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '148' x-powered-by: - ASP.NET status: @@ -3588,36 +5345,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -g -v --storage-account --azure-file-share -p + - -g -v -c -i --retain-until --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e849792a-d127-438f-beed-6991be7b8871?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e849792a-d127-438f-beed-6991be7b8871","name":"e849792a-d127-438f-beed-6991be7b8871","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.2743841S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-05-20T02:03:02.6234849Z","activityId":"817158d6-b90f-11eb-a317-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '188' + - '937' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:37 GMT + - Thu, 20 May 2021 02:03: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: @@ -3627,7 +5387,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '149' x-powered-by: - ASP.NET status: @@ -3641,36 +5401,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v --storage-account --azure-file-share -p + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e849792a-d127-438f-beed-6991be7b8871?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"InProgress","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e849792a-d127-438f-beed-6991be7b8871","name":"e849792a-d127-438f-beed-6991be7b8871","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.8851035S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-05-20T02:03:02.6234849Z","activityId":"817158d6-b90f-11eb-a317-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '188' + - '937' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:40 GMT + - Thu, 20 May 2021 02:03: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: @@ -3680,7 +5443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '147' x-powered-by: - ASP.NET status: @@ -3694,36 +5457,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v --storage-account --azure-file-share -p + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/6509585e-47b3-40c3-98cb-481866c0b1e1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e849792a-d127-438f-beed-6991be7b8871?api-version=2020-10-01 response: body: - string: '{"id":"6509585e-47b3-40c3-98cb-481866c0b1e1","name":"6509585e-47b3-40c3-98cb-481866c0b1e1","status":"Succeeded","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"2021-04-20T08:02:59.3462578Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"8fb10ebb-7ef4-4e64-a528-7cbd8cb329ed"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e849792a-d127-438f-beed-6991be7b8871","name":"e849792a-d127-438f-beed-6991be7b8871","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.145028S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-05-20T02:03:02.6234849Z","activityId":"817158d6-b90f-11eb-a317-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '304' + - '936' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:41 GMT + - Thu, 20 May 2021 02:03: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: @@ -3733,7 +5499,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '146' x-powered-by: - ASP.NET status: @@ -3747,32 +5513,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurefileshare + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v --storage-account --azure-file-share -p + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8fb10ebb-7ef4-4e64-a528-7cbd8cb329ed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e849792a-d127-438f-beed-6991be7b8871?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8fb10ebb-7ef4-4e64-a528-7cbd8cb329ed","name":"8fb10ebb-7ef4-4e64-a528-7cbd8cb329ed","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.6278247S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-04-20T08:02:59.3462578Z","endTime":"2021-04-20T08:03:40.9740825Z","activityId":"bcb7dc1e-a1ae-11eb-9a93-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/e849792a-d127-438f-beed-6991be7b8871","name":"e849792a-d127-438f-beed-6991be7b8871","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.566955S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take + Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File + Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-05-20T02:03:02.6234849Z","endTime":"2021-05-20T02:03:05.1904399Z","activityId":"817158d6-b90f-11eb-a317-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '946' + - '975' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:41 GMT + - Thu, 20 May 2021 02:03:34 GMT expires: - '-1' pragma: @@ -3789,7 +5555,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '145' x-powered-by: - ASP.NET status: @@ -3803,30 +5569,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup recoverypoint list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query + - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f","name":"AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812","name":"AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:02.6234849Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1352' + - '1550' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:42 GMT + - Thu, 20 May 2021 02:04:05 GMT expires: - '-1' pragma: @@ -3842,66 +5608,65 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "AzureFileShareBackupRequest", "recoveryPointExpiryTimeInUTC": - "2021-05-20T00:00:00.000Z"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup recoverypoint list Connection: - keep-alive - Content-Length: - - '121' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query + - -g -v -c -i --backup-management-type --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f/backup?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bb401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812/recoveryPoints?api-version=2020-10-01 response: body: - string: '' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812/recoveryPoints/2261207221170800068","name":"2261207221170800068","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-05-20T02:03:03Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-05-20T02:03:03.0000000Z","recoveryPointSizeInGB":0}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f/operationsStatus/3b09fdfa-c5ea-42d4-bb2d-7b8918754597?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '874' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:42 GMT + - Thu, 20 May 2021 02:04:05 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f/operationResults/3b09fdfa-c5ea-42d4-bb2d-7b8918754597?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3910,30 +5675,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query + - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/3b09fdfa-c5ea-42d4-bb2d-7b8918754597?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"3b09fdfa-c5ea-42d4-bb2d-7b8918754597","name":"3b09fdfa-c5ea-42d4-bb2d-7b8918754597","status":"Succeeded","startTime":"2021-04-20T08:03:43.0146096Z","endTime":"2021-04-20T08:03:43.0146096Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f5fba4fa-f723-4e2c-a160-c17533e317e8"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812","name":"AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:02.6234849Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '1550' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:43 GMT + - Thu, 20 May 2021 02:04:06 GMT expires: - '-1' pragma: @@ -3948,13 +5713,60 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' - x-powered-by: - - ASP.NET + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup restore restore-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v -c -i -r --resolve-conflict --restore-mode --query + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '257' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 May 2021 02:04:06 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway status: - code: 200 - message: OK + code: 404 + message: Not Found - request: body: null headers: @@ -3963,39 +5775,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --retain-until --backup-management-type --query + - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f5fba4fa-f723-4e2c-a160-c17533e317e8?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f5fba4fa-f723-4e2c-a160-c17533e317e8","name":"f5fba4fa-f723-4e2c-a160-c17533e317e8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.2895362S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:03:43.0146096Z","activityId":"ebd8e74c-a1ae-11eb-911e-2cf05d45d149"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-05-20T01:58:11.1049896Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-20T01:58:11.0112336Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' headers: cache-control: - no-cache content-length: - - '937' + - '919' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:43 GMT + - Thu, 20 May 2021 02:04:06 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4004,69 +5813,64 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": + "OriginalLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-azurefileshare Connection: - keep-alive + Content-Length: + - '348' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -n + - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f5fba4fa-f723-4e2c-a160-c17533e317e8?api-version=2020-10-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bb401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812/recoveryPoints/2261207221170800068/restore?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f5fba4fa-f723-4e2c-a160-c17533e317e8","name":"f5fba4fa-f723-4e2c-a160-c17533e317e8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.8577181S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:03:43.0146096Z","activityId":"ebd8e74c-a1ae-11eb-911e-2cf05d45d149"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812/operationsStatus/9ce884d4-b83b-4e05-9bb3-55cf7f348c86?api-version=2020-10-01 cache-control: - no-cache content-length: - - '937' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:44 GMT + - Thu, 20 May 2021 02:04:07 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812/operationResults/9ce884d4-b83b-4e05-9bb3-55cf7f348c86?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4075,39 +5879,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f5fba4fa-f723-4e2c-a160-c17533e317e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/9ce884d4-b83b-4e05-9bb3-55cf7f348c86?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f5fba4fa-f723-4e2c-a160-c17533e317e8","name":"f5fba4fa-f723-4e2c-a160-c17533e317e8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.0841545S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"InProgress"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"InProgress","startTime":"2021-04-20T08:03:43.0146096Z","activityId":"ebd8e74c-a1ae-11eb-911e-2cf05d45d149"}}' + string: '{"id":"9ce884d4-b83b-4e05-9bb3-55cf7f348c86","name":"9ce884d4-b83b-4e05-9bb3-55cf7f348c86","status":"Succeeded","startTime":"2021-05-20T02:04:08.2369633Z","endTime":"2021-05-20T02:04:08.2369633Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9ce884d4-b83b-4e05-9bb3-55cf7f348c86"}}' headers: cache-control: - no-cache content-length: - - '937' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:45 GMT + - Thu, 20 May 2021 02:04:08 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4117,7 +5918,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -4131,32 +5932,34 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup restore restore-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i -r --resolve-conflict --restore-mode --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f5fba4fa-f723-4e2c-a160-c17533e317e8?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9ce884d4-b83b-4e05-9bb3-55cf7f348c86?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/f5fba4fa-f723-4e2c-a160-c17533e317e8","name":"f5fba4fa-f723-4e2c-a160-c17533e317e8","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.3173709S","storageAccountName":"clitest000003","storageAccountVersion":"MicrosoftStorage","extendedInfo":{"tasksList":[{"taskId":"Take - Snapshot","status":"Completed"}],"propertyBag":{"Data Transferred (in MB)":"0","File - Share Name":"clitest-item000004","Whether job is adhoc or scheduled.":"True"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Backup","status":"Completed","startTime":"2021-04-20T08:03:43.0146096Z","endTime":"2021-04-20T08:03:45.3319805Z","activityId":"ebd8e74c-a1ae-11eb-911e-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9ce884d4-b83b-4e05-9bb3-55cf7f348c86","name":"9ce884d4-b83b-4e05-9bb3-55cf7f348c86","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.4202974S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:04:08.2369633Z","activityId":"a84e03e5-b90f-11eb-80f4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '976' + - '1141' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:15 GMT + - Thu, 20 May 2021 02:04:09 GMT expires: - '-1' pragma: @@ -4173,7 +5976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -4187,36 +5990,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --query + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9ce884d4-b83b-4e05-9bb3-55cf7f348c86?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f","name":"AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:43.0146096Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9ce884d4-b83b-4e05-9bb3-55cf7f348c86","name":"9ce884d4-b83b-4e05-9bb3-55cf7f348c86","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1194667S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:04:08.2369633Z","activityId":"a84e03e5-b90f-11eb-80f4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1550' + - '1141' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:45 GMT + - Thu, 20 May 2021 02:04:10 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4226,7 +6034,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -4240,36 +6048,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup recoverypoint list + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --query + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f/recoveryPoints?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9ce884d4-b83b-4e05-9bb3-55cf7f348c86?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f/recoveryPoints/2260982567487343189","name":"2260982567487343189","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureFileShareRecoveryPoint","recoveryPointType":"FileSystemConsistent","recoveryPointTime":"2021-04-20T08:03:44Z","fileShareSnapshotUri":"https://clitest000003.file.core.windows.net/clitest-item000004?sharesnapshot=2021-04-20T08:03:44.0000000Z","recoveryPointSizeInGB":0}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9ce884d4-b83b-4e05-9bb3-55cf7f348c86","name":"9ce884d4-b83b-4e05-9bb3-55cf7f348c86","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.3846849S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:04:08.2369633Z","activityId":"a84e03e5-b90f-11eb-80f4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '874' + - '1141' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:46 GMT + - Thu, 20 May 2021 02:04:10 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4293,36 +6106,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20itemType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9ce884d4-b83b-4e05-9bb3-55cf7f348c86?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f","name":"AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:43.0146096Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9ce884d4-b83b-4e05-9bb3-55cf7f348c86","name":"9ce884d4-b83b-4e05-9bb3-55cf7f348c86","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.7870934S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job + Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-05-20T02:04:08.2369633Z","activityId":"a84e03e5-b90f-11eb-80f4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1550' + - '1142' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:46 GMT + - Thu, 20 May 2021 02:04:40 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4332,7 +6150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -4346,45 +6164,56 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup job wait Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ClassicStorage/storageAccounts/clitest000003?api-version=2015-12-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9ce884d4-b83b-4e05-9bb3-55cf7f348c86?api-version=2020-10-01 response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ClassicStorage/storageAccounts/clitest000003'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/9ce884d4-b83b-4e05-9bb3-55cf7f348c86","name":"9ce884d4-b83b-4e05-9bb3-55cf7f348c86","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT57.22225S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source + File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"5/20/2021 + 2:03:04 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data + Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped + Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-05-20T02:04:08.2369633Z","endTime":"2021-05-20T02:05:05.4592133Z","activityId":"a84e03e5-b90f-11eb-80f4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '257' + - '1230' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:04:47 GMT + - Thu, 20 May 2021 02:05:10 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-resource-requests: + - '146' + x-powered-by: + - ASP.NET status: - code: 404 - message: Not Found + code: 200 + message: OK - request: body: null headers: @@ -4393,36 +6222,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003?api-version=2016-01-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","name":"clitest000003","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"encryption":{"services":{"blob":{"enabled":true,"lastEnabledTime":"2021-04-20T08:01:52.6174917Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-20T08:01:52.5393377Z","primaryEndpoints":{"blob":"https://clitest000003.blob.core.windows.net/","queue":"https://clitest000003.queue.core.windows.net/","table":"https://clitest000003.table.core.windows.net/","file":"https://clitest000003.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812","name":"AzureFileShare;b401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-05-20T02:03:02.6234849Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '919' + - '1702' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:47 GMT + - Thu, 20 May 2021 02:05:41 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4431,59 +6260,59 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "AzureFileShareRestoreRequest", "recoveryType": - "OriginalLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "copyOptions": "Overwrite", "restoreRequestType": "FullShareRestore"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection disable Connection: - keep-alive Content-Length: - - '348' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f/recoveryPoints/2260982567487343189/restore?api-version=2020-10-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3Bb401f938be037ba8a0db541d6b805e4e9b43d64a3580071cf101ffdc48686812?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f/operationsStatus/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:04:48 GMT + - Thu, 20 May 2021 02:05:42 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f/operationResults/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: @@ -4497,30 +6326,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","name":"ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","status":"Succeeded","startTime":"2021-04-20T08:04:48.3564254Z","endTime":"2021-04-20T08:04:48.3564254Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c"}}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:48 GMT + - Thu, 20 May 2021 02:05:43 GMT expires: - '-1' pragma: @@ -4536,7 +6365,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '148' x-powered-by: - ASP.NET status: @@ -4550,41 +6379,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup restore restore-azurefileshare + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -c -i -r --resolve-conflict --restore-mode --query + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","name":"ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.3816422S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:04:48.3564254Z","activityId":"1286d01e-a1af-11eb-8404-2cf05d45d149"}}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1141' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:48 GMT + - Thu, 20 May 2021 02:05:44 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4594,7 +6418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '147' x-powered-by: - ASP.NET status: @@ -4608,41 +6432,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","name":"ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT1.8975956S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:04:48.3564254Z","activityId":"1286d01e-a1af-11eb-8404-2cf05d45d149"}}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1141' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:50 GMT + - Thu, 20 May 2021 02:05:45 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4652,7 +6471,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -4666,41 +6485,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","name":"ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT2.1387536S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:04:48.3564254Z","activityId":"1286d01e-a1af-11eb-8404-2cf05d45d149"}}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1141' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:50 GMT + - Thu, 20 May 2021 02:05: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: @@ -4710,7 +6524,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '145' x-powered-by: - ASP.NET status: @@ -4724,41 +6538,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","name":"ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT32.3872781S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","Job - Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"InProgress","startTime":"2021-04-20T08:04:48.3564254Z","activityId":"1286d01e-a1af-11eb-8404-2cf05d45d149"}}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1142' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:20 GMT + - Thu, 20 May 2021 02:05: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: @@ -4768,7 +6577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '144' x-powered-by: - ASP.NET status: @@ -4782,41 +6591,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -g -v -n + - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","name":"ab27c97a-d80b-4ca6-9f61-f0c5ac9e625c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT57.7900143S","actionsInfo":[1],"storageAccountName":"clitest000003","storageAccountVersion":"ClassicCompute","extendedInfo":{"tasksList":[],"propertyBag":{"Source - File Share Name":"clitest-item000004","Source Storage Account Name":"clitest000003","RestoreRecoveryPointTime":"4/20/2021 - 8:03:44 AM","Job Type":"Recovering to the original file share","RestoreDestination":"clitest000003/clitest-item000004/","Data - Transferred (in MB)":"0","Number Of Restored Files":"0","Number Of Skipped - Files":"0","Number Of Failed Files":"0"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"Restore","status":"Completed","startTime":"2021-04-20T08:04:48.3564254Z","endTime":"2021-04-20T08:05:46.1464397Z","activityId":"1286d01e-a1af-11eb-8404-2cf05d45d149"}}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1232' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:05:51 GMT + - Thu, 20 May 2021 02:05: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: @@ -4826,7 +6630,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '143' x-powered-by: - ASP.NET status: @@ -4846,24 +6650,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f","name":"AzureFileShare;818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Completed","lastBackupTime":"2021-04-20T08:03:43.0146096Z","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1702' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:21 GMT + - Thu, 20 May 2021 02:05:50 GMT expires: - '-1' pragma: @@ -4879,7 +6683,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -4896,46 +6700,48 @@ interactions: - backup protection disable Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B818d24dd5f23028474c4003930a9c5ada7eca34ef780c4faee8c5a8a20c4c15f?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:06:22 GMT + - Thu, 20 May 2021 02:05:51 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4950,24 +6756,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:23 GMT + - Thu, 20 May 2021 02:05:53 GMT expires: - '-1' pragma: @@ -4983,7 +6789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '140' x-powered-by: - ASP.NET status: @@ -5003,24 +6809,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:24 GMT + - Thu, 20 May 2021 02:05:54 GMT expires: - '-1' pragma: @@ -5036,7 +6842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '139' x-powered-by: - ASP.NET status: @@ -5056,24 +6862,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:25 GMT + - Thu, 20 May 2021 02:05:55 GMT expires: - '-1' pragma: @@ -5089,7 +6895,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '138' x-powered-by: - ASP.NET status: @@ -5109,24 +6915,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:26 GMT + - Thu, 20 May 2021 02:05:56 GMT expires: - '-1' pragma: @@ -5142,7 +6948,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '137' x-powered-by: - ASP.NET status: @@ -5162,24 +6968,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:28 GMT + - Thu, 20 May 2021 02:05:58 GMT expires: - '-1' pragma: @@ -5195,7 +7001,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '136' x-powered-by: - ASP.NET status: @@ -5215,24 +7021,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:29 GMT + - Thu, 20 May 2021 02:05:59 GMT expires: - '-1' pragma: @@ -5248,7 +7054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '135' x-powered-by: - ASP.NET status: @@ -5268,24 +7074,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:30 GMT + - Thu, 20 May 2021 02:06:00 GMT expires: - '-1' pragma: @@ -5301,7 +7107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '134' x-powered-by: - ASP.NET status: @@ -5321,24 +7127,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:31 GMT + - Thu, 20 May 2021 02:06:01 GMT expires: - '-1' pragma: @@ -5354,7 +7160,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '133' x-powered-by: - ASP.NET status: @@ -5374,24 +7180,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"InProgress","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '186' + - '188' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:32 GMT + - Thu, 20 May 2021 02:06:03 GMT expires: - '-1' pragma: @@ -5407,7 +7213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '132' x-powered-by: - ASP.NET status: @@ -5427,24 +7233,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/8857a7b6-a4ee-43d9-ae4e-6c1dde365274?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","name":"8857a7b6-a4ee-43d9-ae4e-6c1dde365274","status":"Succeeded","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"2021-05-20T02:05:42.7388667Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"60ee4284-9b5e-42fc-994e-11d01d028419"}}' headers: cache-control: - no-cache content-length: - - '186' + - '304' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:34 GMT + - Thu, 20 May 2021 02:06:04 GMT expires: - '-1' pragma: @@ -5460,7 +7266,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '131' x-powered-by: - ASP.NET status: @@ -5480,30 +7286,32 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60ee4284-9b5e-42fc-994e-11d01d028419?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/60ee4284-9b5e-42fc-994e-11d01d028419","name":"60ee4284-9b5e-42fc-994e-11d01d028419","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.1594308S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-20T02:05:42.7388667Z","endTime":"2021-05-20T02:06:03.8982975Z","activityId":"e0e97678-b90f-11eb-a154-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '186' + - '906' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:35 GMT + - Thu, 20 May 2021 02: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: @@ -5513,7 +7321,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '148' x-powered-by: - ASP.NET status: @@ -5527,30 +7335,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '186' + - '880' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:36 GMT + - Thu, 20 May 2021 02:06:05 GMT expires: - '-1' pragma: @@ -5566,7 +7374,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '148' x-powered-by: - ASP.NET status: @@ -5580,51 +7388,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '186' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:06:37 GMT + - Thu, 20 May 2021 02:06:06 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5633,51 +7439,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '186' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:39 GMT + - Thu, 20 May 2021 02:06:06 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '93' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5686,51 +7492,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '186' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:40 GMT + - Thu, 20 May 2021 02:06:07 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '92' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5739,51 +7545,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '186' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:41 GMT + - Thu, 20 May 2021 02:06:08 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '91' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5792,51 +7598,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"InProgress","startTime":"2021-04-20T08:06:22.67462Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '186' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:42 GMT + - Thu, 20 May 2021 02:06:10 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '90' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5845,51 +7651,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/78e4cfbe-65ff-4e3c-a91f-263dc4e7892b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: - string: '{"id":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","name":"78e4cfbe-65ff-4e3c-a91f-263dc4e7892b","status":"Succeeded","startTime":"2021-04-20T08:06:22.67462Z","endTime":"2021-04-20T08:06:22.67462Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"8d50220c-4cb2-40ef-b159-fc2561c32975"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '300' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:43 GMT + - Thu, 20 May 2021 02:06:11 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '89' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5898,53 +7704,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container unregister Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8d50220c-4cb2-40ef-b159-fc2561c32975?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/8d50220c-4cb2-40ef-b159-fc2561c32975","name":"8d50220c-4cb2-40ef-b159-fc2561c32975","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.2928944S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-04-20T08:06:22.67462Z","endTime":"2021-04-20T08:06:43.9675144Z","activityId":"4b125f50-a1af-11eb-a453-2cf05d45d149"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '904' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:44 GMT + - Thu, 20 May 2021 02:06:12 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '88' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5959,45 +7763,45 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '880' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:44 GMT + - Thu, 20 May 2021 02:06:13 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '87' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -6009,41 +7813,43 @@ interactions: - backup container unregister Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:06:44 GMT + - Thu, 20 May 2021 02:06:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?fabricName=Azure?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' x-powered-by: - ASP.NET status: @@ -6063,18 +7869,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6082,11 +7888,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:46 GMT + - Thu, 20 May 2021 02:06:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6096,7 +7902,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '85' x-powered-by: - ASP.NET status: @@ -6116,18 +7922,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6135,11 +7941,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:47 GMT + - Thu, 20 May 2021 02:06:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6149,7 +7955,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '84' x-powered-by: - ASP.NET status: @@ -6169,18 +7975,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6188,11 +7994,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:48 GMT + - Thu, 20 May 2021 02:06:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6202,7 +8008,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '83' x-powered-by: - ASP.NET status: @@ -6222,18 +8028,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6241,11 +8047,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:49 GMT + - Thu, 20 May 2021 02:06:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6255,7 +8061,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '82' x-powered-by: - ASP.NET status: @@ -6275,18 +8081,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6294,11 +8100,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:51 GMT + - Thu, 20 May 2021 02:06:22 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6308,7 +8114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '81' x-powered-by: - ASP.NET status: @@ -6328,18 +8134,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6347,11 +8153,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:52 GMT + - Thu, 20 May 2021 02:06:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6361,7 +8167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '80' x-powered-by: - ASP.NET status: @@ -6381,18 +8187,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6400,11 +8206,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:53 GMT + - Thu, 20 May 2021 02:06:24 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6414,7 +8220,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '79' x-powered-by: - ASP.NET status: @@ -6434,18 +8240,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6453,11 +8259,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:54 GMT + - Thu, 20 May 2021 02:06:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6467,7 +8273,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '78' x-powered-by: - ASP.NET status: @@ -6487,18 +8293,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6506,11 +8312,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:55 GMT + - Thu, 20 May 2021 02:06:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6520,7 +8326,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '77' x-powered-by: - ASP.NET status: @@ -6540,18 +8346,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6559,11 +8365,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:57 GMT + - Thu, 20 May 2021 02:06:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6573,7 +8379,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '76' x-powered-by: - ASP.NET status: @@ -6593,18 +8399,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6612,11 +8418,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:58 GMT + - Thu, 20 May 2021 02:06:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6626,7 +8432,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '75' x-powered-by: - ASP.NET status: @@ -6646,18 +8452,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6665,11 +8471,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:59 GMT + - Thu, 20 May 2021 02:06:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6679,7 +8485,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '74' x-powered-by: - ASP.NET status: @@ -6699,18 +8505,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6718,11 +8524,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:00 GMT + - Thu, 20 May 2021 02:06:31 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6732,7 +8538,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '73' x-powered-by: - ASP.NET status: @@ -6752,18 +8558,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6771,11 +8577,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:02 GMT + - Thu, 20 May 2021 02:06:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6785,7 +8591,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '72' x-powered-by: - ASP.NET status: @@ -6805,18 +8611,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6824,11 +8630,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:03 GMT + - Thu, 20 May 2021 02:06:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6838,7 +8644,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '71' x-powered-by: - ASP.NET status: @@ -6858,18 +8664,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6877,11 +8683,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:04 GMT + - Thu, 20 May 2021 02:06:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6891,7 +8697,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '70' x-powered-by: - ASP.NET status: @@ -6911,18 +8717,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6930,11 +8736,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:05 GMT + - Thu, 20 May 2021 02:06:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6944,7 +8750,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '69' x-powered-by: - ASP.NET status: @@ -6964,18 +8770,18 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -6983,11 +8789,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:07:07 GMT + - Thu, 20 May 2021 02:06:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 pragma: - no-cache server: @@ -6997,7 +8803,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '68' x-powered-by: - ASP.NET status: @@ -7017,12 +8823,12 @@ interactions: ParameterSetName: - -g -v -c --yes --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/9de48554-6c95-4bd1-89bb-46f56f6ce421?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/dc109a93-ec14-4843-a9ee-27f5548e2508?api-version=2020-10-01 response: body: string: '' @@ -7032,7 +8838,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:07:08 GMT + - Thu, 20 May 2021 02:06:39 GMT expires: - '-1' pragma: @@ -7042,7 +8848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '67' x-powered-by: - ASP.NET status: @@ -7062,8 +8868,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -7079,7 +8885,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:08:48 GMT + - Thu, 20 May 2021 02:08:23 GMT expires: - '-1' pragma: @@ -7095,7 +8901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -7105,7 +8911,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -7117,10 +8923,7 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: @@ -7132,7 +8935,7 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:08:51 GMT + - Thu, 20 May 2021 02:08:26 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_unregister_container.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_unregister_container.yaml index 2742fcfd5a8..e7f7a049b80 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_unregister_container.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_afs_unregister_container.yaml @@ -13,19 +13,16 @@ interactions: Content-Length: - '76' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --location User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: body: - string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-04-20T08%3A02%3A05.2331377Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"southeastasia","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T01%3A58%3A09.8212559Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -34,7 +31,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:04 GMT + - Thu, 20 May 2021 01:58:09 GMT expires: - '-1' pragma: @@ -66,12 +63,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.1.0 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-storage/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003/listKeys?api-version=2021-04-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-04-20T08:02:06.1496416Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-04-20T08:02:06.1496416Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-05-20T01:58:11.1206330Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-05-20T01:58:11.1206330Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -80,7 +77,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:30 GMT + - Thu, 20 May 2021 01:58:33 GMT expires: - '-1' pragma: @@ -96,7 +93,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11997' + - '11998' status: code: 200 message: OK @@ -108,9 +105,9 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.9; Windows 10) AZURECLI/2.22.0 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.8.9; Windows 10) AZURECLI/2.23.0 x-ms-date: - - Tue, 20 Apr 2021 08:02:30 GMT + - Thu, 20 May 2021 01:58:33 GMT x-ms-share-quota: - '1' x-ms-version: @@ -124,11 +121,11 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:02:30 GMT + - Thu, 20 May 2021 01:58:33 GMT etag: - - '"0x8D903D2A5CCA945"' + - '"0x8D91B32C626309D"' last-modified: - - Tue, 20 Apr 2021 08:02:30 GMT + - Thu, 20 May 2021 01:58:33 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -150,15 +147,15 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -167,7 +164,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:30 GMT + - Thu, 20 May 2021 01:58:34 GMT expires: - '-1' pragma: @@ -192,9 +189,9 @@ interactions: - request: body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureStorage", "workLoadType": "AzureFileShare", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", - "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-04-20T18:00:00.000Z"], + "scheduleRunFrequency": "Daily", "scheduleRunTimes": ["2021-05-20T11:30:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", - "dailySchedule": {"retentionTimes": ["2021-04-20T18:00:00.000Z"], "retentionDuration": + "dailySchedule": {"retentionTimes": ["2021-05-20T11:30:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}, "timeZone": "UTC"}}' headers: Accept: @@ -212,15 +209,15 @@ interactions: ParameterSetName: - -g -v --policy -n --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache @@ -229,7 +226,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:32 GMT + - Thu, 20 May 2021 01:58:34 GMT expires: - '-1' pragma: @@ -245,7 +242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -265,8 +262,8 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -282,7 +279,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:32 GMT + - Thu, 20 May 2021 01:58:35 GMT expires: - '-1' pragma: @@ -318,24 +315,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","name":"StorageContainer;Storage;clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7;clitestidjdbydl23y6isfnz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestidjdbydl23y6isfnz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.Storage/storageAccounts/clitestidjdbydl23y6isfnz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgag4aioo35w;clitestcwbmbbcesknotygpz","name":"StorageContainer;Storage;clitest.rgag4aioo35w;clitestcwbmbbcesknotygpz","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestcwbmbbcesknotygpz","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgag4aioo35w/providers/Microsoft.Storage/storageAccounts/clitestcwbmbbcesknotygpz"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","name":"StorageContainer;Storage;clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc;clitesterlb3npa6l4s4denq","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesterlb3npa6l4s4denq","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.Storage/storageAccounts/clitesterlb3npa6l4s4denq"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","name":"StorageContainer;Storage;clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn;clitesteq7n3hhs7fyymzakn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesteq7n3hhs7fyymzakn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.Storage/storageAccounts/clitesteq7n3hhs7fyymzakn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfazjeok6ml;clitesttxaw35hykx6vp7stn","name":"StorageContainer;Storage;clitest.rgfazjeok6ml;clitesttxaw35hykx6vp7stn","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitesttxaw35hykx6vp7stn","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfazjeok6ml/providers/Microsoft.Storage/storageAccounts/clitesttxaw35hykx6vp7stn"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: cache-control: - no-cache content-length: - - '12746' + - '12289' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:32 GMT + - Thu, 20 May 2021 01:58:36 GMT expires: - '-1' pragma: @@ -358,8 +355,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": - "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' + body: null headers: Accept: - application/json @@ -370,46 +366,40 @@ interactions: Connection: - keep-alive Content-Length: - - '273' - Content-Type: - - application/json; charset=utf-8 + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/refreshContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{}' + string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/57b50fbd-10bc-4ecd-8589-5897a103c2cd?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:02:35 GMT + - Thu, 20 May 2021 01:58:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/57b50fbd-10bc-4ecd-8589-5897a103c2cd?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -429,45 +419,35 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationResults/57b50fbd-10bc-4ecd-8589-5897a103c2cd?api-version=2020-10-01 response: body: - string: '{}' + string: '' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2019-05-13-preview cache-control: - no-cache - content-length: - - '2' - content-type: - - application/json date: - - Tue, 20 Apr 2021 08:02:36 GMT + - Thu, 20 May 2021 01:59:01 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 204 + message: No Content - request: body: null headers: @@ -482,47 +462,48 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs1100320007de01867","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320007de01867","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","name":"StorageContainer;Storage;AzureSDKTest_reserved;cs110032000ca62af00","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000ca62af00","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","name":"StorageContainer;Storage;clitest.rg6n3as6rec5;clitest2en426ykvrdgnlwkd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest2en426ykvrdgnlwkd","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6n3as6rec5/providers/Microsoft.Storage/storageAccounts/clitest2en426ykvrdgnlwkd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","name":"StorageContainer;Storage;clitest.rgekim5ct43n;clitestaxzz2w4ay2wruyjs5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestaxzz2w4ay2wruyjs5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitestaxzz2w4ay2wruyjs5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgfbkzva2twq;clitestehbd4sasg3mmfgkl5","name":"StorageContainer;Storage;clitest.rgfbkzva2twq;clitestehbd4sasg3mmfgkl5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestehbd4sasg3mmfgkl5","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfbkzva2twq/providers/Microsoft.Storage/storageAccounts/clitestehbd4sasg3mmfgkl5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgptrybj4fg5;clitest4cli4nyytkxxlu4ek","name":"StorageContainer;Storage;clitest.rgptrybj4fg5;clitest4cli4nyytkxxlu4ek","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest4cli4nyytkxxlu4ek","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptrybj4fg5/providers/Microsoft.Storage/storageAccounts/clitest4cli4nyytkxxlu4ek"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","name":"StorageContainer;Storage;clitest.rgu7jwflzo6g;clitest6qixwlhm5see7ipqv","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest6qixwlhm5see7ipqv","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitest6qixwlhm5see7ipqv"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgvtweopx7lj;clitest3i2mzfioctu3nfznl","name":"StorageContainer;Storage;clitest.rgvtweopx7lj;clitest3i2mzfioctu3nfznl","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest3i2mzfioctu3nfznl","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvtweopx7lj/providers/Microsoft.Storage/storageAccounts/clitest3i2mzfioctu3nfznl"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rgwnfnpizbl2;clitestts4wdnvuga7ucdpzc","name":"StorageContainer;Storage;clitest.rgwnfnpizbl2;clitestts4wdnvuga7ucdpzc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitestts4wdnvuga7ucdpzc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwnfnpizbl2/providers/Microsoft.Storage/storageAccounts/clitestts4wdnvuga7ucdpzc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest000003","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320004dd89524","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320004dd89524","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320008debd5bc","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320008debd5bc","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200092fe0771","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200092fe0771","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000b6f3c90c","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000b6f3c90c","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000c31bae71","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000c31bae71","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs110032000e3121978","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs110032000e3121978","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs11003200127365c47","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs11003200127365c47","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","name":"StorageContainer;Storage;cloud-shell-storage-southeastasia;cs1100320012c36c452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"cs1100320012c36c452","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlst","name":"StorageContainer;Storage;jiasli-cli-dev;jlst","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlst","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlst"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;jiasli-cli-dev;jlstcs","name":"StorageContainer;Storage;jiasli-cli-dev;jlstcs","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"jlstcs","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.Storage/storageAccounts/jlstcs"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectableContainers/StorageContainer;Storage;qianwens;qianwensdiag","name":"StorageContainer;Storage;qianwens;qianwensdiag","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"qianwensdiag","backupManagementType":"AzureStorage","protectableContainerType":"StorageContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/qianwens/providers/Microsoft.Storage/storageAccounts/qianwensdiag"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '16174' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:37 GMT + - Thu, 20 May 2021 01:59:02 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"backupManagementType": "AzureStorage", "containerType": + "StorageContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003"}}' headers: Accept: - application/json @@ -532,21 +513,25 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '273' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -554,11 +539,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:38 GMT + - Thu, 20 May 2021 01:59:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: @@ -567,8 +552,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + x-ms-ratelimit-remaining-subscription-writes: + - '1197' x-powered-by: - ASP.NET status: @@ -588,18 +573,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -607,11 +592,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:39 GMT + - Thu, 20 May 2021 01:59:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: @@ -621,7 +606,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '149' x-powered-by: - ASP.NET status: @@ -641,18 +626,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -660,11 +645,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:41 GMT + - Thu, 20 May 2021 01:59:04 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: @@ -674,7 +659,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '148' x-powered-by: - ASP.NET status: @@ -694,18 +679,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -713,11 +698,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:42 GMT + - Thu, 20 May 2021 01:59:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: @@ -727,7 +712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '147' x-powered-by: - ASP.NET status: @@ -747,18 +732,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -766,11 +751,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:44 GMT + - Thu, 20 May 2021 01:59:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: @@ -780,7 +765,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '146' x-powered-by: - ASP.NET status: @@ -800,18 +785,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -819,11 +804,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:45 GMT + - Thu, 20 May 2021 01:59:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: @@ -833,7 +818,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '145' x-powered-by: - ASP.NET status: @@ -853,45 +838,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/55ec1d2b-69b3-470b-95e0-af9e3fd75cca?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '790' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:47 GMT + - Thu, 20 May 2021 01:59:09 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '144' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -906,45 +891,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-20T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-20T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '740' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:47 GMT + - Thu, 20 May 2021 01:59:10 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '143' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -959,45 +944,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '{"value":[]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '12' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:47 GMT + - Thu, 20 May 2021 01:59:12 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1009,41 +994,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:48 GMT + - Thu, 20 May 2021 01:59:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '141' x-powered-by: - ASP.NET status: @@ -1063,18 +1050,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1082,11 +1069,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:49 GMT + - Thu, 20 May 2021 01:59:14 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: @@ -1096,7 +1083,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '140' x-powered-by: - ASP.NET status: @@ -1116,18 +1103,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1135,11 +1122,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:50 GMT + - Thu, 20 May 2021 01:59:15 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: @@ -1149,7 +1136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '139' x-powered-by: - ASP.NET status: @@ -1169,18 +1156,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1188,11 +1175,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:51 GMT + - Thu, 20 May 2021 01:59:17 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: @@ -1202,7 +1189,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '138' x-powered-by: - ASP.NET status: @@ -1222,18 +1209,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1241,11 +1228,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:52 GMT + - Thu, 20 May 2021 01:59:18 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: @@ -1255,7 +1242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '137' x-powered-by: - ASP.NET status: @@ -1275,18 +1262,18 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -1294,11 +1281,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:54 GMT + - Thu, 20 May 2021 01:59:19 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: @@ -1308,7 +1295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '136' x-powered-by: - ASP.NET status: @@ -1328,37 +1315,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/6c66590f-d0cd-407e-94e6-eaea17e70ae9?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache + content-length: + - '2' content-type: - - application/json; charset=utf-8 + - application/json date: - - Tue, 20 Apr 2021 08:02:55 GMT + - Thu, 20 May 2021 01:59:20 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '135' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 202 + message: Accepted - request: body: null headers: @@ -1373,49 +1368,47 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;680aacb6e9662dac9383b7e7a8b967957e819dc041c9df7de1fcb63223cc4709","name":"azurefileshare;680aacb6e9662dac9383b7e7a8b967957e819dc041c9df7de1fcb63223cc4709","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1039' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:56 GMT + - Thu, 20 May 2021 01:59:21 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '134' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", - "protectedItemType": "AzureFileShareProtectedItem"}}' + body: null headers: Accept: - application/json @@ -1425,43 +1418,43 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '460' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B680aacb6e9662dac9383b7e7a8b967957e819dc041c9df7de1fcb63223cc4709?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;680aacb6e9662dac9383b7e7a8b967957e819dc041c9df7de1fcb63223cc4709/operationsStatus/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:02:57 GMT + - Thu, 20 May 2021 01:59:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;680aacb6e9662dac9383b7e7a8b967957e819dc041c9df7de1fcb63223cc4709/operationResults/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '133' x-powered-by: - ASP.NET status: @@ -1481,45 +1474,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:57 GMT + - Thu, 20 May 2021 01:59:24 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '132' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1534,45 +1527,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:58 GMT + - Thu, 20 May 2021 01:59:25 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '131' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1587,45 +1580,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:02:59 GMT + - Thu, 20 May 2021 01:59:26 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '130' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1640,45 +1633,1794 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '129' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '128' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '127' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:31 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '126' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:32 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '125' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:34 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '124' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:35 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:37 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '121' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:38 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:40 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:41 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:43 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:44 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:46 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:52 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:53 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 01:59:58 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:00 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:01 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:02 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:03 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:05 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview + cache-control: + - no-cache + content-length: + - '2' + content-type: + - application/json + date: + - Thu, 20 May 2021 02:00:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 + response: + body: + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:01 GMT + - Thu, 20 May 2021 02:00:09 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '96' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1693,45 +3435,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:02 GMT + - Thu, 20 May 2021 02:00:11 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '95' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1746,24 +3488,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/a96d6935-74bf-46f8-bd5e-b521496a3435?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":0,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}' headers: cache-control: - no-cache content-length: - - '188' + - '790' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:03 GMT + - Thu, 20 May 2021 02:00:12 GMT expires: - '-1' pragma: @@ -1779,7 +3521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '94' x-powered-by: - ASP.NET status: @@ -1799,24 +3541,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[]}' headers: cache-control: - no-cache content-length: - - '188' + - '12' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:04 GMT + - Thu, 20 May 2021 02:00:12 GMT expires: - '-1' pragma: @@ -1832,7 +3574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: @@ -1849,48 +3591,46 @@ interactions: - backup protection enable-for-azurefileshare Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/inquire?api-version=2020-10-01&$filter=workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ebcca22d-ae84-412f-a045-c979d153e0cf?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:05 GMT + - Thu, 20 May 2021 02:00:13 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ebcca22d-ae84-412f-a045-c979d153e0cf?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1905,45 +3645,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ebcca22d-ae84-412f-a045-c979d153e0cf?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ebcca22d-ae84-412f-a045-c979d153e0cf?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:07 GMT + - Thu, 20 May 2021 02:00:13 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ebcca22d-ae84-412f-a045-c979d153e0cf?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '149' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1958,45 +3698,45 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ebcca22d-ae84-412f-a045-c979d153e0cf?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ebcca22d-ae84-412f-a045-c979d153e0cf?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '188' + - '2' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:08 GMT + - Thu, 20 May 2021 02:00:14 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ebcca22d-ae84-412f-a045-c979d153e0cf?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '148' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2011,45 +3751,37 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ebcca22d-ae84-412f-a045-c979d153e0cf?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: cache-control: - no-cache - content-length: - - '188' content-type: - - application/json + - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:03:09 GMT + - Thu, 20 May 2021 02:00:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '147' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 204 + message: No Content - request: body: null headers: @@ -2064,24 +3796,72 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive + a response from ''Microsoft.RecoveryServices'' within the specified time period."}}' headers: cache-control: - no-cache + connection: + - close content-length: - - '188' + - '154' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 May 2021 02:01:54 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - service + status: + code: 504 + message: Gateway Timeout +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20workloadType%20eq%20%27AzureFileShare%27 + response: + body: + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectableItems/azurefileshare;38fa4702c3ebe3ad54d9e7b6b1286f5533d8cbb4175da831d822941655cb7dff","name":"azurefileshare;38fa4702c3ebe3ad54d9e7b6b1286f5533d8cbb4175da831d822941655cb7dff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentContainerFabricId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","parentContainerFriendlyName":"clitest000003","azureFileShareType":"XSMB","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","protectableItemType":"AzureFileShare","friendlyName":"clitest-item000004","protectionState":"NotProtected"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '1039' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:10 GMT + - Thu, 20 May 2021 02:01:55 GMT expires: - '-1' pragma: @@ -2097,7 +3877,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '148' x-powered-by: - ASP.NET status: @@ -2117,24 +3897,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","name":"clitest-item000005","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureStorage","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-05-20T11:30:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-05-20T11:30:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"timeZone":"UTC","protectedItemsCount":0}}' headers: cache-control: - no-cache content-length: - - '188' + - '740' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:12 GMT + - Thu, 20 May 2021 02:01:55 GMT expires: - '-1' pragma: @@ -2150,12 +3930,67 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK +- request: + body: '{"properties": {"sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005", + "protectedItemType": "AzureFileShareProtectedItem"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurefileshare + Connection: + - keep-alive + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -v --azure-file-share --storage-account -p + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/azurefileshare%3B38fa4702c3ebe3ad54d9e7b6b1286f5533d8cbb4175da831d822941655cb7dff?api-version=2020-10-01 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;38fa4702c3ebe3ad54d9e7b6b1286f5533d8cbb4175da831d822941655cb7dff/operationsStatus/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Thu, 20 May 2021 02:01:56 GMT + expires: + - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/storagecontainer;storage;clitest.rg000001;clitest000003/protectedItems/azurefileshare;38fa4702c3ebe3ad54d9e7b6b1286f5533d8cbb4175da831d822941655cb7dff/operationResults/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -2170,24 +4005,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:13 GMT + - Thu, 20 May 2021 02:01:57 GMT expires: - '-1' pragma: @@ -2203,7 +4038,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '149' x-powered-by: - ASP.NET status: @@ -2223,24 +4058,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:14 GMT + - Thu, 20 May 2021 02:01:58 GMT expires: - '-1' pragma: @@ -2256,7 +4091,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '148' x-powered-by: - ASP.NET status: @@ -2276,24 +4111,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:15 GMT + - Thu, 20 May 2021 02:01:59 GMT expires: - '-1' pragma: @@ -2309,7 +4144,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '147' x-powered-by: - ASP.NET status: @@ -2329,24 +4164,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:17 GMT + - Thu, 20 May 2021 02:02:00 GMT expires: - '-1' pragma: @@ -2362,7 +4197,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '146' x-powered-by: - ASP.NET status: @@ -2382,24 +4217,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:18 GMT + - Thu, 20 May 2021 02:02:02 GMT expires: - '-1' pragma: @@ -2415,7 +4250,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '145' x-powered-by: - ASP.NET status: @@ -2435,24 +4270,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:19 GMT + - Thu, 20 May 2021 02:02:03 GMT expires: - '-1' pragma: @@ -2468,7 +4303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '144' x-powered-by: - ASP.NET status: @@ -2488,24 +4323,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:20 GMT + - Thu, 20 May 2021 02:02:04 GMT expires: - '-1' pragma: @@ -2521,7 +4356,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '143' x-powered-by: - ASP.NET status: @@ -2541,24 +4376,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:21 GMT + - Thu, 20 May 2021 02:02:05 GMT expires: - '-1' pragma: @@ -2574,7 +4409,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '142' x-powered-by: - ASP.NET status: @@ -2594,24 +4429,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:23 GMT + - Thu, 20 May 2021 02:02:07 GMT expires: - '-1' pragma: @@ -2627,7 +4462,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '141' x-powered-by: - ASP.NET status: @@ -2647,24 +4482,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:24 GMT + - Thu, 20 May 2021 02:02:08 GMT expires: - '-1' pragma: @@ -2680,7 +4515,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '140' x-powered-by: - ASP.NET status: @@ -2700,24 +4535,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:25 GMT + - Thu, 20 May 2021 02:02:09 GMT expires: - '-1' pragma: @@ -2733,7 +4568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '139' x-powered-by: - ASP.NET status: @@ -2753,24 +4588,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:26 GMT + - Thu, 20 May 2021 02:02:10 GMT expires: - '-1' pragma: @@ -2786,7 +4621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '138' x-powered-by: - ASP.NET status: @@ -2806,24 +4641,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:28 GMT + - Thu, 20 May 2021 02:02:11 GMT expires: - '-1' pragma: @@ -2839,7 +4674,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '137' x-powered-by: - ASP.NET status: @@ -2859,24 +4694,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:29 GMT + - Thu, 20 May 2021 02:02:13 GMT expires: - '-1' pragma: @@ -2892,7 +4727,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '136' x-powered-by: - ASP.NET status: @@ -2912,24 +4747,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:30 GMT + - Thu, 20 May 2021 02:02:14 GMT expires: - '-1' pragma: @@ -2945,7 +4780,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '135' x-powered-by: - ASP.NET status: @@ -2965,24 +4800,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:31 GMT + - Thu, 20 May 2021 02:02:15 GMT expires: - '-1' pragma: @@ -2998,7 +4833,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '134' x-powered-by: - ASP.NET status: @@ -3018,24 +4853,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:33 GMT + - Thu, 20 May 2021 02:02:17 GMT expires: - '-1' pragma: @@ -3051,7 +4886,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '133' x-powered-by: - ASP.NET status: @@ -3071,24 +4906,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:34 GMT + - Thu, 20 May 2021 02:02:18 GMT expires: - '-1' pragma: @@ -3104,7 +4939,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '132' x-powered-by: - ASP.NET status: @@ -3124,24 +4959,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:35 GMT + - Thu, 20 May 2021 02:02:20 GMT expires: - '-1' pragma: @@ -3157,7 +4992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '131' x-powered-by: - ASP.NET status: @@ -3177,24 +5012,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:36 GMT + - Thu, 20 May 2021 02:02:21 GMT expires: - '-1' pragma: @@ -3210,7 +5045,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '130' x-powered-by: - ASP.NET status: @@ -3230,24 +5065,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"InProgress","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:37 GMT + - Thu, 20 May 2021 02:02:22 GMT expires: - '-1' pragma: @@ -3263,7 +5098,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '129' x-powered-by: - ASP.NET status: @@ -3283,24 +5118,24 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/2cb52db1-6987-4c3c-b55f-c778f707479c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"2cb52db1-6987-4c3c-b55f-c778f707479c","name":"2cb52db1-6987-4c3c-b55f-c778f707479c","status":"Succeeded","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"2021-04-20T08:02:57.1060343Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"18ebe4f7-ae88-4a94-b23e-9287638366f9"}}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:39 GMT + - Thu, 20 May 2021 02:02:24 GMT expires: - '-1' pragma: @@ -3316,7 +5151,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '128' x-powered-by: - ASP.NET status: @@ -3336,33 +5171,30 @@ interactions: ParameterSetName: - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/18ebe4f7-ae88-4a94-b23e-9287638366f9?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/18ebe4f7-ae88-4a94-b23e-9287638366f9","name":"18ebe4f7-ae88-4a94-b23e-9287638366f9","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT41.7911728S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy - Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-04-20T08:02:57.1060343Z","endTime":"2021-04-20T08:03:38.8972071Z","activityId":"c28b130c-a1ae-11eb-aad6-2cf05d45d149"}}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '946' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:40 GMT + - Thu, 20 May 2021 02:02: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: @@ -3372,7 +5204,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '127' x-powered-by: - ASP.NET status: @@ -3386,30 +5218,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -n -v -g --backup-management-type + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '880' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:41 GMT + - Thu, 20 May 2021 02:02:26 GMT expires: - '-1' pragma: @@ -3425,7 +5257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '126' x-powered-by: - ASP.NET status: @@ -3439,30 +5271,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c --query + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;680aacb6e9662dac9383b7e7a8b967957e819dc041c9df7de1fcb63223cc4709","name":"AzureFileShare;680aacb6e9662dac9383b7e7a8b967957e819dc041c9df7de1fcb63223cc4709","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1352' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:41 GMT + - Thu, 20 May 2021 02:02:27 GMT expires: - '-1' pragma: @@ -3478,7 +5310,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '125' x-powered-by: - ASP.NET status: @@ -3492,30 +5324,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B680aacb6e9662dac9383b7e7a8b967957e819dc041c9df7de1fcb63223cc4709?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;680aacb6e9662dac9383b7e7a8b967957e819dc041c9df7de1fcb63223cc4709","name":"AzureFileShare;680aacb6e9662dac9383b7e7a8b967957e819dc041c9df7de1fcb63223cc4709","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2021-04-20T08:03:38.6272113Z"},"protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1487' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:42 GMT + - Thu, 20 May 2021 02:02:29 GMT expires: - '-1' pragma: @@ -3531,7 +5363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '124' x-powered-by: - ASP.NET status: @@ -3545,49 +5377,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B680aacb6e9662dac9383b7e7a8b967957e819dc041c9df7de1fcb63223cc4709?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '187' + content-type: + - application/json date: - - Tue, 20 Apr 2021 08:03:43 GMT + - Thu, 20 May 2021 02:02:30 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '123' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -3596,30 +5430,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:43 GMT + - Thu, 20 May 2021 02:02:31 GMT expires: - '-1' pragma: @@ -3635,7 +5469,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '122' x-powered-by: - ASP.NET status: @@ -3649,30 +5483,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:44 GMT + - Thu, 20 May 2021 02:02:32 GMT expires: - '-1' pragma: @@ -3688,7 +5522,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '121' x-powered-by: - ASP.NET status: @@ -3702,30 +5536,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:46 GMT + - Thu, 20 May 2021 02:02:33 GMT expires: - '-1' pragma: @@ -3741,7 +5575,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '120' x-powered-by: - ASP.NET status: @@ -3755,30 +5589,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:47 GMT + - Thu, 20 May 2021 02:02:35 GMT expires: - '-1' pragma: @@ -3794,7 +5628,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '119' x-powered-by: - ASP.NET status: @@ -3808,30 +5642,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:48 GMT + - Thu, 20 May 2021 02:02:36 GMT expires: - '-1' pragma: @@ -3847,7 +5681,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '118' x-powered-by: - ASP.NET status: @@ -3861,30 +5695,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:49 GMT + - Thu, 20 May 2021 02:02:37 GMT expires: - '-1' pragma: @@ -3900,7 +5734,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '117' x-powered-by: - ASP.NET status: @@ -3914,30 +5748,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"InProgress","startTime":"2021-05-20T02:01:57.267964Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '188' + - '187' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:51 GMT + - Thu, 20 May 2021 02:02:39 GMT expires: - '-1' pragma: @@ -3953,7 +5787,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '116' x-powered-by: - ASP.NET status: @@ -3967,30 +5801,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/5f0bd09f-9d21-4f3a-a318-4084eea14732?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"5f0bd09f-9d21-4f3a-a318-4084eea14732","name":"5f0bd09f-9d21-4f3a-a318-4084eea14732","status":"Succeeded","startTime":"2021-05-20T02:01:57.267964Z","endTime":"2021-05-20T02:01:57.267964Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"95d11634-d576-461c-a3c4-d9a0e1c7238c"}}' headers: cache-control: - no-cache content-length: - - '188' + - '302' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:52 GMT + - Thu, 20 May 2021 02:02:40 GMT expires: - '-1' pragma: @@ -4006,7 +5840,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '115' x-powered-by: - ASP.NET status: @@ -4020,36 +5854,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup protection enable-for-azurefileshare Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v --azure-file-share --storage-account -p User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/95d11634-d576-461c-a3c4-d9a0e1c7238c?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/95d11634-d576-461c-a3c4-d9a0e1c7238c","name":"95d11634-d576-461c-a3c4-d9a0e1c7238c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT42.0317491S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003","Policy + Name":"clitest-item000005"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-20T02:01:57.267964Z","endTime":"2021-05-20T02:02:39.2997131Z","activityId":"e2fc079e-b90e-11eb-a2e7-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '188' + - '945' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:53 GMT + - Thu, 20 May 2021 02:03: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: @@ -4059,7 +5896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '149' x-powered-by: - ASP.NET status: @@ -4073,30 +5910,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup container show Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -n -v -g --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureStorage%27%20and%20friendlyName%20eq%20%27clitest000003%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003","name":"StorageContainer;Storage;clitest.rg000001;clitest000003","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000003","protectedItemCount":1,"friendlyName":"clitest000003","backupManagementType":"AzureStorage","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"StorageContainer","protectableObjectType":"StorageContainer"}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '880' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:54 GMT + - Thu, 20 May 2021 02:03:25 GMT expires: - '-1' pragma: @@ -4112,7 +5949,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '149' x-powered-by: - ASP.NET status: @@ -4126,30 +5963,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection disable + - backup item list Connection: - keep-alive ParameterSetName: - - -g -v -c -i --backup-management-type --delete-backup-data --yes + - -g -v -c --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupProtectedItems?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;38fa4702c3ebe3ad54d9e7b6b1286f5533d8cbb4175da831d822941655cb7dff","name":"AzureFileShare;38fa4702c3ebe3ad54d9e7b6b1286f5533d8cbb4175da831d822941655cb7dff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '188' + - '1352' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:55 GMT + - Thu, 20 May 2021 02:03:26 GMT expires: - '-1' pragma: @@ -4165,7 +6002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '149' x-powered-by: - ASP.NET status: @@ -4185,24 +6022,24 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B38fa4702c3ebe3ad54d9e7b6b1286f5533d8cbb4175da831d822941655cb7dff?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;storage;clitest.rg000001;clitest000003/protectedItems/AzureFileShare;38fa4702c3ebe3ad54d9e7b6b1286f5533d8cbb4175da831d822941655cb7dff","name":"AzureFileShare;38fa4702c3ebe3ad54d9e7b6b1286f5533d8cbb4175da831d822941655cb7dff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"clitest-item000004","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","resourceState":"Active","resourceStateSyncTime":"2021-05-20T02:02:39.0147026Z"},"protectedItemType":"AzureFileShareProtectedItem","backupManagementType":"AzureStorage","workloadType":"AzureFileShare","containerName":"StorageContainer;storage;clitest.rg000001;clitest000003","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.storage/storageAccounts/clitest000003","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupPolicies/clitest-item000005","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '188' + - '1487' content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:57 GMT + - Thu, 20 May 2021 02:03:26 GMT expires: - '-1' pragma: @@ -4218,7 +6055,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '149' x-powered-by: - ASP.NET status: @@ -4235,48 +6072,46 @@ interactions: - backup protection disable Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3Bstorage%3Bclitest.rg000001%3Bclitest000003/protectedItems/AzureFileShare%3B38fa4702c3ebe3ad54d9e7b6b1286f5533d8cbb4175da831d822941655cb7dff?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9?api-version=2020-10-01 cache-control: - no-cache content-length: - - '188' - content-type: - - application/json + - '0' date: - - Tue, 20 Apr 2021 08:03:58 GMT + - Thu, 20 May 2021 02:03:27 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -4291,15 +6126,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9","name":"23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9","status":"InProgress","startTime":"2021-05-20T02:03:28.1835052Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4308,7 +6143,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:03:59 GMT + - Thu, 20 May 2021 02:03:28 GMT expires: - '-1' pragma: @@ -4324,7 +6159,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '149' x-powered-by: - ASP.NET status: @@ -4344,15 +6179,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9","name":"23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9","status":"InProgress","startTime":"2021-05-20T02:03:28.1835052Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4361,7 +6196,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:00 GMT + - Thu, 20 May 2021 02:03:29 GMT expires: - '-1' pragma: @@ -4377,7 +6212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '148' x-powered-by: - ASP.NET status: @@ -4397,15 +6232,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9","name":"23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9","status":"InProgress","startTime":"2021-05-20T02:03:28.1835052Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4414,7 +6249,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:02 GMT + - Thu, 20 May 2021 02:03:30 GMT expires: - '-1' pragma: @@ -4430,7 +6265,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '147' x-powered-by: - ASP.NET status: @@ -4450,15 +6285,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"InProgress","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9","name":"23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9","status":"InProgress","startTime":"2021-05-20T02:03:28.1835052Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4467,7 +6302,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:03 GMT + - Thu, 20 May 2021 02:03:48 GMT expires: - '-1' pragma: @@ -4483,7 +6318,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '146' x-powered-by: - ASP.NET status: @@ -4503,15 +6338,15 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/08010c4d-6ee5-4476-b629-9ea117a60fed?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperations/23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9?api-version=2020-10-01 response: body: - string: '{"id":"08010c4d-6ee5-4476-b629-9ea117a60fed","name":"08010c4d-6ee5-4476-b629-9ea117a60fed","status":"Succeeded","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"2021-04-20T08:03:43.4753933Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"43b5eb42-5738-487a-8a3f-d6d5a5616ab5"}}' + string: '{"id":"23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9","name":"23fd8b9c-1c94-4626-a49d-2d28cf0b5ae9","status":"Succeeded","startTime":"2021-05-20T02:03:28.1835052Z","endTime":"2021-05-20T02:03:28.1835052Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"fe9bc196-4217-4711-a313-535f9db130bc"}}' headers: cache-control: - no-cache @@ -4520,7 +6355,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:04 GMT + - Thu, 20 May 2021 02:03:49 GMT expires: - '-1' pragma: @@ -4536,7 +6371,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '145' x-powered-by: - ASP.NET status: @@ -4556,25 +6391,25 @@ interactions: ParameterSetName: - -g -v -c -i --backup-management-type --delete-backup-data --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/43b5eb42-5738-487a-8a3f-d6d5a5616ab5?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fe9bc196-4217-4711-a313-535f9db130bc?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/43b5eb42-5738-487a-8a3f-d6d5a5616ab5","name":"43b5eb42-5738-487a-8a3f-d6d5a5616ab5","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.2256294S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File - Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-04-20T08:03:43.4753933Z","endTime":"2021-04-20T08:04:04.7010227Z","activityId":"ebdda350-a1ae-11eb-b4a4-2cf05d45d149"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupJobs/fe9bc196-4217-4711-a313-535f9db130bc","name":"fe9bc196-4217-4711-a313-535f9db130bc","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureStorageJob","duration":"PT21.3033698S","storageAccountName":"clitest000003","storageAccountVersion":"Storage","extendedInfo":{"tasksList":[],"propertyBag":{"File + Share Name":"clitest-item000004","Storage Account Name":"clitest000003"}},"isUserTriggered":false,"entityFriendlyName":"clitest-item000004","backupManagementType":"AzureStorage","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-20T02:03:28.1835052Z","endTime":"2021-05-20T02:03:49.486875Z","activityId":"90ae4e23-b90f-11eb-9f72-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '906' + - '905' content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:05 GMT + - Thu, 20 May 2021 02:03:50 GMT expires: - '-1' pragma: @@ -4591,7 +6426,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -4613,8 +6448,8 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: DELETE @@ -4624,17 +6459,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: - '0' date: - - Tue, 20 Apr 2021 08:04:06 GMT + - Thu, 20 May 2021 02:03:50 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?fabricName=Azure?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupOperationResults/ef5daaef-177e-4065-82b1-048c33771730?fabricName=Azure?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -4662,18 +6497,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4681,11 +6516,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:07 GMT + - Thu, 20 May 2021 02:03:51 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -4695,7 +6530,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '149' x-powered-by: - ASP.NET status: @@ -4715,18 +6550,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4734,11 +6569,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:08 GMT + - Thu, 20 May 2021 02:03:52 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -4748,7 +6583,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '148' x-powered-by: - ASP.NET status: @@ -4768,18 +6603,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4787,11 +6622,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:09 GMT + - Thu, 20 May 2021 02:03:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -4801,7 +6636,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '147' x-powered-by: - ASP.NET status: @@ -4821,18 +6656,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4840,11 +6675,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:10 GMT + - Thu, 20 May 2021 02:03:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -4854,7 +6689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '146' x-powered-by: - ASP.NET status: @@ -4874,18 +6709,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4893,11 +6728,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:12 GMT + - Thu, 20 May 2021 02:03:57 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -4907,7 +6742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '145' x-powered-by: - ASP.NET status: @@ -4927,18 +6762,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4946,11 +6781,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:13 GMT + - Thu, 20 May 2021 02:03:59 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -4960,7 +6795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '144' x-powered-by: - ASP.NET status: @@ -4980,18 +6815,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -4999,11 +6834,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:14 GMT + - Thu, 20 May 2021 02:04:01 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -5013,7 +6848,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '143' x-powered-by: - ASP.NET status: @@ -5033,18 +6868,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5052,11 +6887,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:16 GMT + - Thu, 20 May 2021 02:04:02 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -5066,7 +6901,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '142' x-powered-by: - ASP.NET status: @@ -5086,18 +6921,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5105,11 +6940,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:17 GMT + - Thu, 20 May 2021 02:04:03 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -5119,7 +6954,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '141' x-powered-by: - ASP.NET status: @@ -5139,18 +6974,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5158,11 +6993,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:18 GMT + - Thu, 20 May 2021 02:04:05 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -5172,7 +7007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '140' x-powered-by: - ASP.NET status: @@ -5192,18 +7027,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5211,11 +7046,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:19 GMT + - Thu, 20 May 2021 02:04:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -5225,7 +7060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '139' x-powered-by: - ASP.NET status: @@ -5245,18 +7080,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5264,11 +7099,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:20 GMT + - Thu, 20 May 2021 02:04:07 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -5278,7 +7113,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '138' x-powered-by: - ASP.NET status: @@ -5298,18 +7133,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5317,11 +7152,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:22 GMT + - Thu, 20 May 2021 02:04:08 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -5331,7 +7166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '137' x-powered-by: - ASP.NET status: @@ -5351,18 +7186,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5370,11 +7205,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:24 GMT + - Thu, 20 May 2021 02:04:09 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -5384,7 +7219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '136' x-powered-by: - ASP.NET status: @@ -5404,18 +7239,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5423,11 +7258,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:25 GMT + - Thu, 20 May 2021 02:04:11 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -5437,7 +7272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '135' x-powered-by: - ASP.NET status: @@ -5457,18 +7292,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5476,11 +7311,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:26 GMT + - Thu, 20 May 2021 02:04:12 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -5490,7 +7325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '134' x-powered-by: - ASP.NET status: @@ -5510,18 +7345,18 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationsStatus/ef5daaef-177e-4065-82b1-048c33771730?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -5529,11 +7364,11 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:27 GMT + - Thu, 20 May 2021 02:04:13 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer;Storage;clitest.rg000001;clitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 pragma: - no-cache server: @@ -5543,7 +7378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '133' x-powered-by: - ASP.NET status: @@ -5563,12 +7398,12 @@ interactions: ParameterSetName: - -g -v -c --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/0c7da278-350d-4d47-a09d-9c3c49c351d1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002/backupFabrics/Azure/protectionContainers/StorageContainer%3BStorage%3Bclitest.rg000001%3Bclitest000003/operationResults/ef5daaef-177e-4065-82b1-048c33771730?api-version=2020-10-01 response: body: string: '' @@ -5578,7 +7413,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 20 Apr 2021 08:04:29 GMT + - Thu, 20 May 2021 02:04:14 GMT expires: - '-1' pragma: @@ -5588,7 +7423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '132' x-powered-by: - ASP.NET status: @@ -5608,8 +7443,8 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -5625,7 +7460,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:04:29 GMT + - Thu, 20 May 2021 02:04:15 GMT expires: - '-1' pragma: @@ -5661,8 +7496,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -5678,7 +7513,7 @@ interactions: content-type: - application/json date: - - Tue, 20 Apr 2021 08:06:09 GMT + - Thu, 20 May 2021 02:05:56 GMT expires: - '-1' pragma: @@ -5694,7 +7529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -5704,7 +7539,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -5716,10 +7551,7 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.22.0 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-mgmt-recoveryservices/1.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: @@ -5731,7 +7563,7 @@ interactions: content-length: - '0' date: - - Tue, 20 Apr 2021 08:06:11 GMT + - Thu, 20 May 2021 02:05:58 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml index 9c989cadb76..79cfa2f4e72 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_vault.yaml @@ -17,15 +17,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002?api-version=2016-06-01 response: body: - string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-11T06%3A05%3A43.2793952Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T05%3A34%3A56.8796169Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -34,7 +34,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:05:43 GMT + - Thu, 20 May 2021 05:34:57 GMT expires: - '-1' pragma: @@ -46,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '206' + - '209' status: code: 201 message: Created @@ -68,15 +68,15 @@ interactions: ParameterSetName: - -n -g --location User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003?api-version=2016-06-01 response: body: - string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-11T06%3A05%3A55.4639256Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-05-20T05%3A35%3A04.7240986Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -85,7 +85,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:05:56 GMT + - Thu, 20 May 2021 05:35:05 GMT expires: - '-1' pragma: @@ -97,7 +97,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '205' + - '209' status: code: 201 message: Created @@ -119,15 +119,15 @@ interactions: ParameterSetName: - -n -g -l User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004?api-version=2016-06-01 response: body: - string: '{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-01-11T06%3A06%3A06.0529456Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-05-20T05%3A35%3A12.5025405Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -136,7 +136,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:06:07 GMT + - Thu, 20 May 2021 05:35:13 GMT expires: - '-1' pragma: @@ -148,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '208' + - '209' status: code: 201 message: Created @@ -170,15 +170,15 @@ interactions: ParameterSetName: - -n -g -l User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005?api-version=2016-06-01 response: body: - string: '{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2021-01-11T06%3A06%3A17.7900524Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2021-05-20T05%3A35%3A22.0041873Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache @@ -187,7 +187,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:06:19 GMT + - Thu, 20 May 2021 05:35:22 GMT expires: - '-1' pragma: @@ -199,7 +199,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '207' + - '209' status: code: 201 message: Created @@ -215,30 +215,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01 response: body: - string: '{"value":[{"location":"westus","name":"vault609","etag":"W/\"datetime''2020-05-04T08%3A41%3A11.4951522Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai1/providers/Microsoft.RecoveryServices/vaults/vault609","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2021-01-11T06%3A06%3A17.7900524Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-11T06%3A05%3A55.4639256Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-11T06%3A05%3A43.2793952Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-01-11T06%3A06%3A06.0529456Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultlfip4trewir","etag":"W/\"datetime''2021-01-11T05%3A27%3A17.2829381Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgur5z4wscam46jsesr7ew2gxlodwbmsbom53jzxnrnvnsceljdiwh7gaorii7bz3tj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlfip4trewir","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"mkheraniVault","etag":"W/\"datetime''2019-04-15T23%3A42%3A41.7821546Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/mkheraniVault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"satishrevault","etag":"W/\"datetime''2017-10-30T03%3A27%3A30.7613223Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/satishrevault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"hiagaSQL2-vault","etag":"W/\"datetime''2020-09-06T02%3A06%3A36.6143346Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL2-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL2-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagaSQL3-vault","etag":"W/\"datetime''2020-09-07T04%3A24%3A03.0496077Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL3-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL3-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagawus-vault","etag":"W/\"datetime''2020-11-11T13%3A51%3A50.5578587Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"bf788512-db64-4d8a-9ac0-7200af6e47cc","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagawusCRR-vault","etag":"W/\"datetime''2020-12-15T02%3A19%3A12.7006676Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2021","Purpose":"Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"68a94769-bcbc-4095-9cf6-0d90d7425f24","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawusCRR-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"oneboxtestvault","etag":"W/\"datetime''2018-12-03T11%3A43%3A44.5596632Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oneboxtestrg/providers/Microsoft.RecoveryServices/vaults/oneboxtestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcVaultCredsWestUSChrome","etag":"W/\"datetime''2019-06-18T12%3A40%3A35.0425019Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcVaultCredsWestUSChrome","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcWestUSEdge","etag":"W/\"datetime''2019-06-17T06%3A54%3A33.3108046Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcWestUSEdge","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"satishrewus","etag":"W/\"datetime''2018-06-19T09%3A32%3A54.5145683Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishrewus/providers/Microsoft.RecoveryServices/vaults/satishrewus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"shracsql","etag":"W/\"datetime''2019-06-17T09%3A28%3A13.468613Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracsql","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"adigupt-vault","etag":"W/\"datetime''2020-05-08T14%3A07%3A50.5556413Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaCRR-vault","etag":"W/\"datetime''2021-01-05T14%3A55%3A03.2465212Z''\"","tags":{"Owner":"hiaga","MAB - Used":"Yes","DeleteBy":"01-2022","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCRR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaCRR-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL-vault","etag":"W/\"datetime''2020-08-21T03%3A53%3A00.0441246Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"12-2099","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL4-vault","etag":"W/\"datetime''2020-09-08T08%3A43%3A44.3952849Z''\"","tags":{"MABUSed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL4-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL4-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL5-vault","etag":"W/\"datetime''2020-10-08T09%3A46%3A01.4670715Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"02-2020","Purpose":"Testing","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL5-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL5-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaeastus2-vault","etag":"W/\"datetime''2020-12-08T14%3A36%3A03.5118198Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"851f9a31-cdc0-4824-ba3b-229f181425b3","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeastus2-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaeus-vault","etag":"W/\"datetime''2020-12-23T09%3A34%3A03.0448565Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d7b03182-a7fa-491c-82e8-dfd410995968","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testvaulteus","etag":"W/\"datetime''2018-12-17T16%3A02%3A48.3946206Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/testvaulteus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westeurope","name":"satishrewe","etag":"W/\"datetime''2018-06-22T12%3A08%3A54.1868106Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishre_werg/providers/Microsoft.RecoveryServices/vaults/satishrewe","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastasia","name":"akneema-crr-vault","etag":"W/\"datetime''2020-12-18T08%3A57%3A31.9807857Z''\"","tags":{"Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastasia","name":"akneema-vault-eastasia","etag":"W/\"datetime''2021-01-04T09%3A17%3A59.5133999Z''\"","tags":{"MABUsed":"Yes","Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-eastasia","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"afsexistingvault","etag":"W/\"datetime''2020-03-31T13%3A54%3A34.020273Z''\"","tags":{"Purpose":"Testing","Owner":"akkanase","Delete - By":"12-2020"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsexistingvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akeema-vault","etag":"W/\"datetime''2020-11-20T13%3A22%3A52.8562272Z''\"","tags":{"MAUsed":"Yes","DeleteBy":"12-9999","Owner":"akneema","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akeema-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-crr-test-vault","etag":"W/\"datetime''2021-01-06T06%3A01%3A26.0627776Z''\"","tags":{"Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-test-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-crr-vault2","etag":"W/\"datetime''2020-12-11T13%3A28%3A17.2415669Z''\"","tags":{"MABUsed":"Yes","Purpose":"Testing","DeleteBy":"12-9999","Owner":"akneema"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-vault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"anagra1","etag":"W/\"datetime''2020-03-06T03%3A58%3A14.4344656Z''\"","tags":{"MAB - Used":"Yes","test":"t"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/backuprg/providers/Microsoft.RecoveryServices/vaults/anagra1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcwr6nizwavp","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.9545679Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg277r2zpenav24joabbpzwijewtrgr3yl35mdbh5av45oqjv7log62kttvpxt5y7h3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcwr6nizwavp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultjr4ethvhvjc","etag":"W/\"datetime''2021-01-10T17%3A55%3A38.4416342Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2rfypppts5rjrrfr7ifjojuvs6rm2usnk75hlq3vwmh3jpvxz4o2nzbhx5oxxfmcp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjr4ethvhvjc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbfxavivqf7s","etag":"W/\"datetime''2021-01-11T05%3A13%3A28.8762878Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbfxavivqf7s","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultucosyyhak52","etag":"W/\"datetime''2021-01-09T20%3A28%3A27.7341371Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bor6n6gihygmrccl4pnljoxzywwp3crd5qr6nqvcegjpgpgcuij77vhingmhjsyb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultucosyyhak52","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulta3ouvoekp6t","etag":"W/\"datetime''2021-01-11T05%3A13%3A29.9533199Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4slvxfqd2u/providers/Microsoft.RecoveryServices/vaults/clitest-vaulta3ouvoekp6t","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpxde47exagx","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.2058238Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4wklpcfkgf7z2dmo6yirtwditpr6dv5ucorh676hhonvegblxjeoifav3gzbonc2i/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpxde47exagx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultk7in3qjdxfr","etag":"W/\"datetime''2021-01-06T15%3A58%3A34.1417672Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5573ubw6roitcsrdz6hzza2empzhwymsal6xjfz7dmammdgx3cdj5hyffepoj5oxf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk7in3qjdxfr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultuflhhudbt3u","etag":"W/\"datetime''2021-01-10T17%3A55%3A35.8411364Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5g5s7xpe34k72pynp75g7jny7tr2wetfuo3ed4iqip4sw6bywv676oa3xywsh3k7j/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuflhhudbt3u","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault25xlq7dib23","etag":"W/\"datetime''2021-01-08T17%3A03%3A08.7326212Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5jbe2uazdxp7zjpm22gdx2gp64hvy3weckmenc6nezzymq2f6l6n6nko2amqrnvzb/providers/Microsoft.RecoveryServices/vaults/clitest-vault25xlq7dib23","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwmpl3qgwfg4","etag":"W/\"datetime''2021-01-07T04%3A54%3A30.3460476Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xuqn4xdnqfvm3hlgevt5osktky7cca3rtwgmg7zsntdew2gg5ixpp7zxrtuaopah/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwmpl3qgwfg4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnh6xp2wkpzx","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.0676763Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5z6lqplkl5xl5cqwg3xotn6z3fnnih3uoukfmxpnsqnsvdvdz7yrp52jdjczwgegj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnh6xp2wkpzx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbf6sdjrxctn","etag":"W/\"datetime''2021-01-08T14%3A22%3A43.7596075Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5zfaooyu3ci4bhk64bmrjmt2x3s3rcihukwnoxwbmm3t7dip6jtewrctvmigge7xw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbf6sdjrxctn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqlhigqsi2cf","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.7160857Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6jjuk24bbq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqlhigqsi2cf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvnakqvrqgzt","etag":"W/\"datetime''2021-01-06T14%3A45%3A22.3124515Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7eeg5kn2wluu7ldvilbazxkno6wskki5gnab5tgxalbjmxk3x7gtcsw7eszm46tj2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvnakqvrqgzt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgjk7mz6fyhf","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.5948619Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7urwpve2juwektv5s4642zs5xeakyxcmw3poj3ndiu65n7wxiovz2xwgjdc3fsmuc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgjk7mz6fyhf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault5szzol4kfzd","etag":"W/\"datetime''2021-01-11T05%3A24%3A29.7994324Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaewowgsrym/providers/Microsoft.RecoveryServices/vaults/clitest-vault5szzol4kfzd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgapuxwdjibg","etag":"W/\"datetime''2021-01-11T05%3A13%3A29.4488365Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgapuxwdjibg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfvsi6g66uth","etag":"W/\"datetime''2021-01-07T11%3A25%3A56.1212289Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb7nrg72xp5gp3zhqyter6xdlxrz2haedz3562ska7wzqed3otvm4eea4uzd2vnpba/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfvsi6g66uth","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultk7eta74baok","etag":"W/\"datetime''2021-01-07T07%3A34%3A22.6756673Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgceahedzhenlacupvfnpc23czgmtc43w3z4d4zdobn4sanzia2n4aseddba3ldxsjb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk7eta74baok","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultu3duvsfrync","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.1234067Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcoabmppv64fencfttdqlhkvd7vwi7p6nubejoofb66kuggbe4nnkci6pxc6ipo4et/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu3duvsfrync","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcumrfa7o4zt","etag":"W/\"datetime''2021-01-08T08%3A45%3A52.6634888Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd3a2hwy47en62f57wkpvrzxezog3pblaswlfotnhipimvkjlttthlqmx2ezpqbo7q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcumrfa7o4zt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault726ru236iyu","etag":"W/\"datetime''2021-01-11T05%3A18%3A29.7488289Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rge4useixderuvq52snvipbhksc6d7phjgict2ykdyj4tdt35wrhiejoebgkoatrmo6/providers/Microsoft.RecoveryServices/vaults/clitest-vault726ru236iyu","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvfh3djlop4f","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.607874Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rge7sivckznpxcnvxe57jfdmwkvzigzxracwbofqlladeueocr7t6ond36x662z76xx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvfh3djlop4f","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultir3l4dazut5","etag":"W/\"datetime''2021-01-11T05%3A28%3A16.3106544Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeesvwvwn2j/providers/Microsoft.RecoveryServices/vaults/clitest-vaultir3l4dazut5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvmm6pq74jlf","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.8714654Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeytjrlmliz4jkibkbn3ajhahfs63lsosqydzckunbwgo6myzw434zter6sgspvth5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvmm6pq74jlf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultes3komvrsft","etag":"W/\"datetime''2021-01-07T12%3A57%3A36.7199916Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfuev6k4keu7g3hgdixiaut76wnamny4piftf6vggrgtdzpjz5kjpp2h4d2ytgaafm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultes3komvrsft","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4teeoxjz6cy","etag":"W/\"datetime''2021-01-10T16%3A51%3A40.8654697Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicfsoyku7j6x3s2m7pwu7p3zourq6opiwgmpekdfvm6cqkfhpoi5mdux3kmniw27b/providers/Microsoft.RecoveryServices/vaults/clitest-vault4teeoxjz6cy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultt4s2mpne5yi","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.1507977Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkduoc63ee54eaxrnnlsm2tuyihkjc46ixdwarei2qlrtufe5r5u644qbth6w66td3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt4s2mpne5yi","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultreg4rfedycg","etag":"W/\"datetime''2021-01-08T12%3A42%3A50.8979163Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglfnpmmbtd5yogwh46k7hygjf7gcrwnp3t2nynwl5ex6z742j5p7u5e4gibmu6wg7f/providers/Microsoft.RecoveryServices/vaults/clitest-vaultreg4rfedycg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcg7ibkqz34a","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.5128492Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3hjatsouk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcg7ibkqz34a","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulto4ngmcfovez","etag":"W/\"datetime''2021-01-08T10%3A54%3A34.5632529Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnwc3kdwadxlimi2o4dhxi5zqpzqnqhfc5olpz5jl4qecy4rp4rkyfchf7odkbqhob/providers/Microsoft.RecoveryServices/vaults/clitest-vaulto4ngmcfovez","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnlrsk45iv6i","etag":"W/\"datetime''2021-01-11T05%3A13%3A28.813227Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo35yb5xe4y5hbz2amdf4nzt2wbjzemxylcbuakn3anoloc7rdc5qknit7czctwvie/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnlrsk45iv6i","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultjwonznvxhfm","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.012624Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgohsok6mg4kofwjgpiu7tbz3z5ohhc42iduah6zxz7rxctkcomfyzx5utdzzcvonmz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjwonznvxhfm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulte33hczi5bqg","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.8444391Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoi6gqgab64fyzl734vunv4x5icbqymrupovhfpb2vroj4m2wthwyrmhnp2vlsi7xy/providers/Microsoft.RecoveryServices/vaults/clitest-vaulte33hczi5bqg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpc5ovgpgkde","etag":"W/\"datetime''2021-01-10T17%3A55%3A37.2785201Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoohifemlsjo3xzrik5634jk57y7ks2tu3kurincl6q6ywnm2t2tre35ghkfq3yroa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpc5ovgpgkde","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxw7ernlqmb3","etag":"W/\"datetime''2021-01-11T05%3A44%3A57.8875164Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp7lqsusvjyopu6izt4qmp2us2372vudbaieylbejw7mkhxv5yc54bal7e3z7b4kqq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxw7ernlqmb3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault7lbokail5d4","etag":"W/\"datetime''2021-01-11T05%3A28%3A16.3236668Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.RecoveryServices/vaults/clitest-vault7lbokail5d4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultphhdbykx4jt","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.9142756Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpo3z5i5tc3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultphhdbykx4jt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultx2jd5l4kpuq","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.5411469Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq4r5sp2rw26xgyv3ry3czw72t35hfmpnld4k2xf7vqwd6e6gvyhavpvkgypvpms7g/providers/Microsoft.RecoveryServices/vaults/clitest-vaultx2jd5l4kpuq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxgggo6obmge","etag":"W/\"datetime''2021-01-11T05%3A24%3A30.2588727Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq7z2f6xakf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxgggo6obmge","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault542uowsygix","etag":"W/\"datetime''2021-01-11T05%3A24%3A31.1607369Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.RecoveryServices/vaults/clitest-vault542uowsygix","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultu4c2x7tachz","etag":"W/\"datetime''2021-01-09T16%3A42%3A20.6221849Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqozivfz7cvfzigvzfi7qzm6oazhemnmqsl2r5pstmw5u42aprlz5n34kfr3juqcyh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu4c2x7tachz","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzbutyxwykn5","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.8865027Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr6n3g5bmo77wyrmdopwkqtngr7ysjgao2v7i4e2hmtqjlmdxtahy7ryaa56nscwgc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzbutyxwykn5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultj4tk2etksoe","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.1307363Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrji2rvsstak74vd7u6jtxhrv7tpmor5t27ybqzq6gmvzi4d6uszx4xczcsxh6twt5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj4tk2etksoe","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultffztcamksk2","etag":"W/\"datetime''2021-01-11T05%3A27%3A16.0738895Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrwdyzk7pzd7e6h5me5idpqckp4gwlsjohfo6bps2nrp5o6j7upietuvqpmkmwn54p/providers/Microsoft.RecoveryServices/vaults/clitest-vaultffztcamksk2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4bfjnrbb447","etag":"W/\"datetime''2021-01-11T05%3A24%3A30.3089206Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs5ohknj4mi/providers/Microsoft.RecoveryServices/vaults/clitest-vault4bfjnrbb447","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulteddpkaxths2","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.49283Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs7lqkysvww/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteddpkaxths2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultligftfuozzs","etag":"W/\"datetime''2021-01-11T05%3A24%3A29.6062473Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsi44xot3of/providers/Microsoft.RecoveryServices/vaults/clitest-vaultligftfuozzs","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulta5f5nzdvvku","etag":"W/\"datetime''2021-01-11T05%3A07%3A01.1574617Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsizffjmto327o6fzaplyxds7vwzfv7pf6sy3cslmk5im3bu3nzchseids2vba4pb6/providers/Microsoft.RecoveryServices/vaults/clitest-vaulta5f5nzdvvku","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulttwfjblszvam","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.9613203Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsqav3wldo7/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttwfjblszvam","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulterxnp5nbhjk","etag":"W/\"datetime''2021-01-11T05%3A44%3A57.9986235Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgt4rjejvgoorkbs65fbm4mgz5gddesoxdz7y4oum4o6dy6ccu6e2ytbfe5lnsfkdlq/providers/Microsoft.RecoveryServices/vaults/clitest-vaulterxnp5nbhjk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault53mrvgdggaj","etag":"W/\"datetime''2021-01-10T05%3A33%3A28.8946127Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlspgd4bkxcozrmer6ehqmp5e7fz5cn4qrprhlf3435pvit56ai2qb3vhkquefaia/providers/Microsoft.RecoveryServices/vaults/clitest-vault53mrvgdggaj","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpvkojszsw45","etag":"W/\"datetime''2021-01-11T05%3A27%3A16.0808958Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5b4jlr2b4i4en4yt5565tdozabduljfj22k7hlnrhzr7st2fvebq4w4n4xekqpzw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpvkojszsw45","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpyvjmigegvo","etag":"W/\"datetime''2021-01-11T05%3A24%3A31.1036822Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjk5uqon77/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpyvjmigegvo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultlhi45vy3udq","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.053409Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlhi45vy3udq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultmh5n35aaow6","etag":"W/\"datetime''2021-01-07T19%3A28%3A24.2834211Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyq7wzdlnegktw6aadl2z3w3l32uyzoms7i5gq5rhgkuvzoeb75dcroquj7c7ok2qj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmh5n35aaow6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqadnbffxljk","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.6152432Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7c2ggv4m537qjgnox64jre3gd6ulzt3uqj6y2w2amvrowbht5ppwdmi42emh66zv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqadnbffxljk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6j5ywfo7of7","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.3779895Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzbpnjfiq7qn4zu5cnjzpdqyztkiir23o576j3kgqjgeg4oypv76r2ubm3uua3upn5/providers/Microsoft.RecoveryServices/vaults/clitest-vault6j5ywfo7of7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3gcnxkg5umf","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.4090038Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzhpcwbvjw6suhxpf5x5vlykbizgmwuhguc42u5s3sdi6kqrw7ayah4easunhw3zeh/providers/Microsoft.RecoveryServices/vaults/clitest-vault3gcnxkg5umf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultagqnmakqvlg","etag":"W/\"datetime''2021-01-07T09%3A24%3A46.6598763Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzp3dtvw2ofzomgvemjy3cp4wtygymmjbzr5ry2an2xfvnsgxj7dr4i7yljjnjpgbx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultagqnmakqvlg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfyr4v7mjlv7","etag":"W/\"datetime''2021-01-11T05%3A28%3A15.6870568Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzwc5pf3r5cb44nk4rze35edkdviu7r3pygkgxxocwrlauqbua3gztgw52jtlndhwl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfyr4v7mjlv7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"rsanjayvault","etag":"W/\"datetime''2017-10-30T08%3A59%3A05.368417Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/rsanjayvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Satishrebkvault","etag":"W/\"datetime''2017-10-30T09%3A00%3A07.7300185Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Satishrebkvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Yashvault001","etag":"W/\"datetime''2017-10-30T09%3A02%3A12.2382044Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Yashvault001","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"mayaggar-vault","etag":"W/\"datetime''2020-01-27T09%3A27%3A10.5580184Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarRG/providers/Microsoft.RecoveryServices/vaults/mayaggar-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"geetaVaultTest","etag":"W/\"datetime''2020-02-28T05%3A18%3A57.7162661Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.RecoveryServices/vaults/geetaVaultTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"psbvtvmvault6248","etag":"W/\"datetime''2019-09-16T02%3A44%3A28.6865119Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtvmrg6248/providers/Microsoft.RecoveryServices/vaults/psbvtvmvault6248","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"sarath-softdelete-vault","etag":"W/\"datetime''2019-11-28T05%3A42%3A33.9933589Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-softdelete-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"vault906","etag":"W/\"datetime''2020-05-22T04%3A51%3A12.428869Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg2/providers/Microsoft.RecoveryServices/vaults/vault906","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"SatishreVault","etag":"W/\"datetime''2018-06-15T13%3A23%3A10.1167645Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SatishreRG/providers/Microsoft.RecoveryServices/vaults/SatishreVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"srbansVault1","etag":"W/\"datetime''2018-11-20T05%3A37%3A58.1114441Z''\"","tags":{"MAB - Used":" Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansRG/providers/Microsoft.RecoveryServices/vaults/srbansVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japaneast","name":"mkheranijapantest","etag":"W/\"datetime''2018-09-07T14%3A31%3A53.4637513Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranijapantest/providers/Microsoft.RecoveryServices/vaults/mkheranijapantest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"australiaeast","name":"satishreae","etag":"W/\"datetime''2018-06-13T07%3A43%3A23.0340224Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishreae/providers/Microsoft.RecoveryServices/vaults/satishreae","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centralindia","name":"sudreddyincvault","etag":"W/\"datetime''2018-06-15T12%3A51%3A41.1306151Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sudreddyinc/providers/Microsoft.RecoveryServices/vaults/sudreddyincvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"southindia","name":"jakavetVault","etag":"W/\"datetime''2020-04-15T14%3A45%3A31.2234657Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"anagra-wcus","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.2068887Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-wcus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"hiagawcus-vault","etag":"W/\"datetime''2020-07-21T11%3A03%3A12.6344999Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"12-2099","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawcus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawcus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"uksouth","name":"BackupVault","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.5128722Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.RecoveryServices/vaults/BackupVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' + string: '{"value":[{"location":"westus","name":"backupvault","etag":"W/\"datetime''2021-04-26T01%3A26%3A59.2685383Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/backuptest/providers/Microsoft.RecoveryServices/vaults/backupvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"sqlvault","etag":"W/\"datetime''2021-04-29T08%3A09%3A37.2280081Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultcriakztggjr","etag":"W/\"datetime''2019-10-16T14%3A48%3A56.3435946Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2qgvxjxy46scnjuh6q5gtypebpi5oeuajfgxb7yrrsggnqxrij6pnc3d7ybz2chih/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcriakztggjr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultonvx2gbjtjz","etag":"W/\"datetime''2019-10-15T16%3A56%3A36.1385797Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg35pihforqftkb5qllg3t75zoxlztjwsmuftgdsphbiy2r3adx3t3spnkzzs2c5c4s/providers/Microsoft.RecoveryServices/vaults/clitest-vaultonvx2gbjtjz","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultpt3klogesmxq73dzbpac6znvqrjajn6w725fn","etag":"W/\"datetime''2021-05-20T02%3A45%3A10.1233532Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36quksxgqcg6tjphnso7dbin4kn2h4nnupmzr77u5blvgc3v6tiny2exbbdtzdjwt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpt3klogesmxq73dzbpac6znvqrjajn6w725fn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultjs23w5bobvn","etag":"W/\"datetime''2019-10-17T15%3A43%3A31.7852556Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3s3h2izedr4olwdk4jqjhltn4lkukfixgfalhtfjmiy6u3xndqvdkrr4j4jqhx6hu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjs23w5bobvn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault4dwvbxrcdlv","etag":"W/\"datetime''2020-07-07T07%3A27%3A02.8582003Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4vzcctackr3xkeouuakrlu3v5iahfsyh5tbu6wimbgipsvlnnydknmqqzno4naid6/providers/Microsoft.RecoveryServices/vaults/clitest-vault4dwvbxrcdlv","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultqcbszkdhprt","etag":"W/\"datetime''2019-11-11T08%3A59%3A44.6712483Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqcbszkdhprt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultvgik7njuazq","etag":"W/\"datetime''2019-11-11T08%3A59%3A47.6711273Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvgik7njuazq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultijxt4x4hr4n","etag":"W/\"datetime''2019-11-11T08%3A59%3A50.9913157Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultijxt4x4hr4n","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultuzuyi24axgn","etag":"W/\"datetime''2020-07-07T07%3A20%3A14.6807642Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggnjd24vd3426k7xejyyb5lcp6f6zir5trgy7ctsdcy5ea4ibnyyym3puwxifrgvgk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuzuyi24axgn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaulte5qqz3zjihv","etag":"W/\"datetime''2019-10-17T15%3A42%3A56.7423779Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgib3viqdhrawwnaopavpcsc2u3psfod7wlami5tg57borlex2io2b7nolpz4qxhm5p/providers/Microsoft.RecoveryServices/vaults/clitest-vaulte5qqz3zjihv","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultqofbmffwsre","etag":"W/\"datetime''2019-10-18T00%3A59%3A25.0251012Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmjjmywipmiqslgzl7tzax3aje4fcv3q5xr2h7hulg63ehpwno2mu7ij7dokxqbh5x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqofbmffwsre","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaulttsqo77eexzn","etag":"W/\"datetime''2019-10-17T15%3A44%3A59.3944443Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp535jz2dxemblsqlvzwsk4ehth7eprd5yny22fi5rppnick62nncsonvlutvmvbje/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttsqo77eexzn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultfe6e244jgwn","etag":"W/\"datetime''2019-10-15T16%3A55%3A25.8080725Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr5sog7j3q3a5o2vy3r4gpl3ylcovxfcbkttkotqe653iz4mlsrbjns76tv4v4lbqq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfe6e244jgwn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2021-05-20T05%3A35%3A22.0041873Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-05-20T05%3A35%3A12.5025405Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-05-20T05%3A35%3A04.7240986Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T05%3A34%3A56.8796169Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultfiskwqfysgb","etag":"W/\"datetime''2019-10-15T16%3A56%3A20.8170902Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguk5hr7imq2zbvjzaogkt7gke2onbbn6sr3ux5rfdiqufofpfrmblbmbzrtd663lkn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfiskwqfysgb","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaulttsindhzqq4y","etag":"W/\"datetime''2019-10-15T16%3A54%3A59.8465222Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyreu2qkpgqyrm56i4cocrrcf5xb2uzmvlm2lau226cqk6zetyu5olii7figpx2mix/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttsindhzqq4y","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultjlixfyp46tq","etag":"W/\"datetime''2019-11-11T08%3A59%3A48.025468Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjlixfyp46tq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"myVault","etag":"W/\"datetime''2020-05-28T11%3A18%3A58.9509269Z''\"","tags":{"patch_key":"PatchKeyUpdated"},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"28c68980-b35c-44b1-b007-47602eae336d","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.RecoveryServices/vaults/myVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6ht6hcki7pg","etag":"W/\"datetime''2021-02-25T03%3A23%3A37.0252781Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2gou4phnc7exgeyb7hljfdqyk5st2mvcr6ve65j2j2zgqrbndhlnlw4udb6gn4epb/providers/Microsoft.RecoveryServices/vaults/clitest-vault6ht6hcki7pg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzxijf4itnyp","etag":"W/\"datetime''2021-05-10T10%3A16%3A04.8681813Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg32v2w3fcaybvu6ezskhhtnarwqz25pebnauyfrzs33plt27gjpaayrimkxicaaw7d/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzxijf4itnyp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultukoqsmzbf7l","etag":"W/\"datetime''2021-04-16T09%3A03%3A44.5004236Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.RecoveryServices/vaults/clitest-vaultukoqsmzbf7l","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4ek6vsryrqm","etag":"W/\"datetime''2021-04-16T02%3A27%3A26.4019025Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ifgvca3bgt7crirwefjsorgjodjshgb4pb62jdizudofnzczkmgwvvf4e47jq6rv/providers/Microsoft.RecoveryServices/vaults/clitest-vault4ek6vsryrqm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgdgmfpbiclk","etag":"W/\"datetime''2021-05-13T09%3A05%3A50.3729789Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3r2ajl3krrgojnywposnu7vhdqj76ycgpknjar7jnrhti4pqcug233wgwxmu3zvux/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgdgmfpbiclk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultmker5hzw2jr","etag":"W/\"datetime''2021-05-13T19%3A47%3A56.9317538Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3xzfyzxirs7odmycxaop6hifpcszxmginvfvgyb4iicxsm65j5evvonszk7oxlchl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmker5hzw2jr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwfvvjgyuoc3","etag":"W/\"datetime''2021-04-23T03%3A42%3A53.0908314Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46ia57tmnz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwfvvjgyuoc3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultar474rkdjah","etag":"W/\"datetime''2020-12-18T04%3A38%3A05.4755355Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4ikwnaqyhmwijajn5xtsc4vjvtztotdvlgqbzlf6a63v6hrlpqdxwqccsjda4o25n/providers/Microsoft.RecoveryServices/vaults/clitest-vaultar474rkdjah","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultd4w7kja3ziz","etag":"W/\"datetime''2021-04-16T02%3A27%3A26.782267Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4y6idhtnlevqyctkcqfeogqplw4ntzoerpjsvbxifr4m7dlelxv4isc2x2wbeaozb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultd4w7kja3ziz","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultju4yj2laejy","etag":"W/\"datetime''2021-04-16T02%3A27%3A26.6761653Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ogmurwwbgvnz3edpldghiz222ztjpoh2i2g7vr3xmf5wf2sgvfxqjgzcmttonyuf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultju4yj2laejy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault37l77wc5c65","etag":"W/\"datetime''2019-12-30T01%3A51%3A51.8140777Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.RecoveryServices/vaults/clitest-vault37l77wc5c65","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6xtsr67mvle","etag":"W/\"datetime''2021-05-06T19%3A46%3A16.773621Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6kyfedfcwp6sf5bxrii2gfql2fcrzrb3ykltkpiqnshtslkpb6pxelwf6a2vr2wib/providers/Microsoft.RecoveryServices/vaults/clitest-vault6xtsr67mvle","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultetraqqoyajx","etag":"W/\"datetime''2020-11-20T08%3A56%3A17.248435Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6q2l3p72qqjpfunzm7jjooz6jhbttu5hsrvd3ntvnpziwpzeefe34prc77w3drrzp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultetraqqoyajx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultsc5zwvzk3vb","etag":"W/\"datetime''2020-12-18T04%3A38%3A06.7958014Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6zauw27sl6ezzkzhluow5ftph4pjex2cgd5mzzjfv4rviudkm6rw5ey3mh2qkasfn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsc5zwvzk3vb","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultkveoay4ozx6","etag":"W/\"datetime''2020-10-29T20%3A08%3A52.6800968Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgad2rkdrk2yhzaptjchzxi4urhl6nptuogvmop47bsemxfupskti624nfybc3s3ihq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkveoay4ozx6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultle5ttbn6okf","etag":"W/\"datetime''2021-04-22T08%3A17%3A37.0498961Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.RecoveryServices/vaults/clitest-vaultle5ttbn6okf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultootoqlqi765","etag":"W/\"datetime''2021-05-10T11%3A22%3A23.5671689Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbesxyrbjtdgy3nlamjr3oly65b4dgzbtstwfug3rlucua3hnz3hksyl45kdjscr2w/providers/Microsoft.RecoveryServices/vaults/clitest-vaultootoqlqi765","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4osjqryvake","etag":"W/\"datetime''2020-10-29T20%3A08%3A50.5440513Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbr2a2442ouo2khk6uuxheavwfrrdoftt5r4pgj2zgak67hqaxb6lihg4eyx26omka/providers/Microsoft.RecoveryServices/vaults/clitest-vault4osjqryvake","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault2ifqobie6yg","etag":"W/\"datetime''2021-05-13T19%3A47%3A55.2341401Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgckzonrbhv322hmhw2jgieyyxa7svbkcartk6fo3lcdkcwcykkbqmrwnh75br2hox3/providers/Microsoft.RecoveryServices/vaults/clitest-vault2ifqobie6yg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultepxlhzp2yr5","etag":"W/\"datetime''2021-04-21T01%3A34%3A08.3349888Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcr3hgftl3jffnz7kz3lznx4orhirnjdvcbimbyu5jzqn34n6fapxuv7eynwqcipx3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultepxlhzp2yr5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultssklzbyvhqy","etag":"W/\"datetime''2021-05-06T19%3A46%3A15.1920947Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcruq5do62s7h4cwufwdffsaj7q5p573edxuzppu4yoxpo2oul7pjh6l4feltfhjsk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultssklzbyvhqy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqs74nztibvf","etag":"W/\"datetime''2021-04-16T02%3A27%3A26.9684454Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcyuchmxb3nqblzc2dsmhfgvhb3au4fkftkzyhwozfnmyjnznan5iuxvg5busyq7xr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqs74nztibvf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault7gzxmc2v2qx","etag":"W/\"datetime''2021-05-06T19%3A46%3A15.181084Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd5zm2aygiepfeiq3ywztbbcvnml74tjq26zsy2sw6gcodhldv6m5qozzhxbyqdxmz/providers/Microsoft.RecoveryServices/vaults/clitest-vault7gzxmc2v2qx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultrpe7raylmtd","etag":"W/\"datetime''2021-04-22T08%3A02%3A14.5166807Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdc25pvki6m/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrpe7raylmtd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulta4byxhpqrvh","etag":"W/\"datetime''2021-04-22T08%3A02%3A14.5356992Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.RecoveryServices/vaults/clitest-vaulta4byxhpqrvh","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulthmbto4zryjv","etag":"W/\"datetime''2020-11-20T08%3A56%3A17.4155941Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgemk3m6yms6gmurrkkob3gdz25k4suv6fh6jh4yklmr2ujlzz42sj5y6ialqhuwywf/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthmbto4zryjv","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultidso52ikujm","etag":"W/\"datetime''2021-05-10T10%3A16%3A03.7120864Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgerd3venp57ix5wmottia4o34avilk3k7b7dynbu5q2dqrciebrfrpsdwjlujjn6lr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultidso52ikujm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvxyrektlils","etag":"W/\"datetime''2021-04-19T09%3A33%3A01.9837396Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfdhl3n5c2qlsirfedrhdfz7sa7hop6bdcvwuid3jb4eit5kt46q6qnqmvwezfqfhe/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvxyrektlils","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultdornpuyy3lw","etag":"W/\"datetime''2021-05-13T19%3A53%3A50.7687418Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfr4gqrq5e4musvs4xqhiwj3jn2f4kksrbu65hexdinohevbcjemupw6jbo4u6zsdw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdornpuyy3lw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4opgimmxgkx","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.80115Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghkyqf7pb5/providers/Microsoft.RecoveryServices/vaults/clitest-vault4opgimmxgkx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzuqclzzofd3","etag":"W/\"datetime''2020-11-20T08%3A56%3A17.2214092Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggihmrio7mkr75oe7hhgfzlif36x2foqoaayd64obnotugzqiqrszmyluzk52spfyl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzuqclzzofd3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3qwr5xz5zxd","etag":"W/\"datetime''2021-04-22T08%3A17%3A37.3872165Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrglkh7zr7/providers/Microsoft.RecoveryServices/vaults/clitest-vault3qwr5xz5zxd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6fhramr2xbw","etag":"W/\"datetime''2021-04-16T06%3A50%3A45.0064061Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh4ph4zy2imewaisnszkiwxynzkxdnjctkzt3wpjqljnhdfvwdvi4epjcn4xptkjc4/providers/Microsoft.RecoveryServices/vaults/clitest-vault6fhramr2xbw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3sj6yvn57qg","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.7440956Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh5duq2f6uh/providers/Microsoft.RecoveryServices/vaults/clitest-vault3sj6yvn57qg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultkyeuooxw7qk","etag":"W/\"datetime''2021-04-16T02%3A27%3A26.6961845Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkyeuooxw7qk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultkhsud4sopec","etag":"W/\"datetime''2020-11-20T08%3A56%3A17.8530072Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghburwdz4jh4buzg5cpx3d6eryni73eognu2wq4ksembp4e4auxkiu6bbtvygcyult/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkhsud4sopec","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault2mcyjyexlj3","etag":"W/\"datetime''2021-05-13T21%3A26%3A51.0601223Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghgpaylamrtsx4xx7zrphjcdju7ulyd3h7mp22yscqroyfywm4lhqckwufpxg4bs5u/providers/Microsoft.RecoveryServices/vaults/clitest-vault2mcyjyexlj3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultyhh4qtwrkvr","etag":"W/\"datetime''2021-04-16T09%3A03%3A44.140076Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghwjqtoopozbfxfq4hdcey3unpgoy5oyhqmjisbqotba25knzuco4c34gz4zvmfl4e/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyhh4qtwrkvr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulti7z4xcxt6n3","etag":"W/\"datetime''2021-05-10T10%3A16%3A04.492826Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgianr3wcrvocmppkrmlej4pstinc4laxe45krmwaqyhmo2b7gxlwkpfr55vayqxq5y/providers/Microsoft.RecoveryServices/vaults/clitest-vaulti7z4xcxt6n3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultjselk5ngr52","etag":"W/\"datetime''2021-04-22T08%3A17%3A43.5891143Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgirzkpx2i6lh67zijfkonyp4lvgqlga3twirjnl725ekrwytxazkuwqxay6oq47vv6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjselk5ngr52","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultunu4ks7dsie","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.5439066Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiudkrkxpl4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultunu4ks7dsie","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultedt62k7zvhu","etag":"W/\"datetime''2021-04-19T02%3A46%3A57.3094223Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultedt62k7zvhu","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbp7mipyvtur","etag":"W/\"datetime''2021-05-10T10%3A16%3A02.8682876Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjwth5cumrwijua4asiceywlfq5ujweham4jmvrtgmmciosupops3pnfp2g2nt472f/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbp7mipyvtur","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault7gyxblvcxyl","etag":"W/\"datetime''2020-10-29T20%3A08%3A49.3218803Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjxtwf5stm5umtm5rckttyaegg5io6pununyfagprqp7lnju2gqge6tswaankwnhni/providers/Microsoft.RecoveryServices/vaults/clitest-vault7gyxblvcxyl","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault2o46ovwxh6w","etag":"W/\"datetime''2021-05-13T19%3A47%3A55.778659Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjyu6dv43m3ss43c7btgbeyv47s3mtllgql7vzctaesl452szjq4g5xsfqdrddytmz/providers/Microsoft.RecoveryServices/vaults/clitest-vault2o46ovwxh6w","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault555khmy7gcl","etag":"W/\"datetime''2021-05-10T11%3A22%3A29.1615009Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkljvq2k4n6fytvislwugdn2amscgl4jnwqv5v5vg4gt3xjher4ng563trwxp6yuu7/providers/Microsoft.RecoveryServices/vaults/clitest-vault555khmy7gcl","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbnqnifjnwmm","etag":"W/\"datetime''2020-09-21T10%3A26%3A11.1333497Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgktqdge5ejbfsqxmn5ndvxksssyoaiim54yoqytc6zbl6pvkwbo345srev7wzwlosl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbnqnifjnwmm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxkqlznz7lje","etag":"W/\"datetime''2021-04-22T08%3A02%3A13.89509Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6l3rg6atb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxkqlznz7lje","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpwtonqllxdn","etag":"W/\"datetime''2021-05-13T07%3A48%3A29.8090641Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltfej7yr4u/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpwtonqllxdn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvs6ueenx6o3","etag":"W/\"datetime''2020-12-18T04%3A38%3A06.1401732Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm2qn6vwwfmea2fe3z3lhmsc37z4eaffax36w5sdka7hf4om6gm4iokxd6hstcl5ph/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvs6ueenx6o3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnieezg6dop3","etag":"W/\"datetime''2021-04-19T02%3A46%3A57.3764857Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm36dc7buafab42cit7nllsktfxbc5wwfmmg3njvh6swz4vde6qxnpobg5qnudba7v/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnieezg6dop3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgqnhj5zjai4","etag":"W/\"datetime''2021-04-21T09%3A44%3A10.0400775Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmagtow5jdo466n33l3kldhfoyf3yz5xi63e66hmp43z5mksp3zcmswjruah7gddxp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgqnhj5zjai4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultudpvy7utmgj","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.2906678Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6glpfa25c/providers/Microsoft.RecoveryServices/vaults/clitest-vaultudpvy7utmgj","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultw3jhdr7xsms","etag":"W/\"datetime''2021-02-24T03%3A44%3A45.2364204Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnqth46sft7puyvrtnti6gghtzqhbajv3awlqrw63pthciz4gwbsbdlvf752nd2gau/providers/Microsoft.RecoveryServices/vaults/clitest-vaultw3jhdr7xsms","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwcrxvmhuw6r","etag":"W/\"datetime''2021-04-26T07%3A58%3A47.3961669Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoi4rkmss4v7mz2alxqdoloxwj5nd7ybefnnwfvgy4vcnovo2x2ai4s6cd5ubtieyg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwcrxvmhuw6r","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnrgwwu6beif","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.7761259Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgovptfsocfg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnrgwwu6beif","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgk5ow6chkdw","etag":"W/\"datetime''2021-04-22T07%3A54%3A16.0837451Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp2hvqabczyvptsn6wjtfrqbvrytv7hcqdlo73hd2dv25qdl3cg66yfgbem6jbvynk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgk5ow6chkdw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwari4g4xpyg","etag":"W/\"datetime''2021-04-23T07%3A13%3A20.0323684Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6ikwpcsq7/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwari4g4xpyg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnm2owurz6lb","etag":"W/\"datetime''2021-05-06T19%3A46%3A14.3632916Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgrpid6dath7k7wi7jkfofswk5dtcxq5gucun5wdvea2vcqwkz7eqomkgsgvvxwe4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnm2owurz6lb","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgunmzmckpuy","etag":"W/\"datetime''2021-04-22T08%3A17%3A37.0298766Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptzwacrnwa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgunmzmckpuy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultw3cmavtcrmt","etag":"W/\"datetime''2021-04-22T06%3A01%3A48.6513491Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq27n6whd2zbhglk7engmisjahol67lmggoljx47mamt5i4x6dhbbauio543prkvdn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultw3cmavtcrmt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultoos26bx55dw","etag":"W/\"datetime''2020-10-23T16%3A31%3A58.3966758Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqbb7oohiug623ibi4qy72xadbg37nvevzblxaea7ez3mait4fp4lfbgv5e5mlrs2z/providers/Microsoft.RecoveryServices/vaults/clitest-vaultoos26bx55dw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultd4ofzhqirrx","etag":"W/\"datetime''2021-04-26T14%3A04%3A27.3809359Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqeivxiczieodb6zvo3ywlvrpj7xsdy3p5p4pf4sj25x6vhhvuvqjdc6exh5tzsyzw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultd4ofzhqirrx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3snfhb6y3aa","etag":"W/\"datetime''2021-04-22T07%3A54%3A15.4541464Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqipifuxusdjxqu36cl7oupej3st2is3s6wedvsdzxswpoc2fqlt77k4mj36qx6aj6/providers/Microsoft.RecoveryServices/vaults/clitest-vault3snfhb6y3aa","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulth2lqfalcza3","etag":"W/\"datetime''2021-02-24T03%3A44%3A45.3545338Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr2vni5wieelvnlmaav6bphoqa77svqbi6wqxtly6mmvrga2zdpq7swbxhtwdbmhq4/providers/Microsoft.RecoveryServices/vaults/clitest-vaulth2lqfalcza3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulti3q4xzkh6v5","etag":"W/\"datetime''2021-04-22T08%3A17%3A37.000849Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc4sjsrzt4/providers/Microsoft.RecoveryServices/vaults/clitest-vaulti3q4xzkh6v5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultkckuhuzf5qt","etag":"W/\"datetime''2021-02-24T03%3A44%3A47.4665621Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrdbh7rzwz26bty5bjw6z3gclagbkvlbvk4hd6nto3s34uumdhdrhpba3cyx3yidu6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkckuhuzf5qt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfci4uaaxviv","etag":"W/\"datetime''2021-04-22T08%3A00%3A17.4713857Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgre2lwihdrrfy5dirjrvhuzsnkpj2oj5gdcn7bgcqkxaazhepdv2xrvhmgwyw4idjr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfci4uaaxviv","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgkhcw7gvjnm","etag":"W/\"datetime''2021-05-06T20%3A53%3A53.2266757Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrj6hk5cmyeuhn7djv4v2kkiz5q3qil4xeygxnu4mkh46jkseyrsp7zgi5rfyryoz4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgkhcw7gvjnm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnrrwo6le6j7","etag":"W/\"datetime''2021-04-16T06%3A50%3A44.9473491Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrr7e5yu4cto6fkllatxyyydgiwjjwfcm4l6cpgkgd4des3xmwtjr4lcucgztueqbv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnrrwo6le6j7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwigajwrefb6","etag":"W/\"datetime''2021-04-16T09%3A03%3A44.6065255Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrtzybz26h2d2f54vpdsxetvaqh5xqlwqf7djuurxw2cshgkwrmytaplddsvwo7jql/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwigajwrefb6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultrte6ele2rnt","etag":"W/\"datetime''2021-04-20T02%3A37%3A32.150239Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsinwtlontxfjydkt3bx3ygxmbscqqq7ol3565odmurv6eh57qifoapnkbumg7fknb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrte6ele2rnt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultppjoekrhu4e","etag":"W/\"datetime''2021-05-13T19%3A47%3A55.3912898Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsjwks5ubsup2h7tp7yqs6xlckt6f6izusu5f5xeac7zggb4mbtilnwayaxkxjulgf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultppjoekrhu4e","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfj2m25l7vmz","etag":"W/\"datetime''2021-04-21T02%3A29%3A02.665275Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgslvw2f4bxm72wkmw2x2k4rplxzv3nprsrawlcesjxigidpygir6h5trew32o66mfg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfj2m25l7vmz","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3t46uqfmvjk","etag":"W/\"datetime''2021-05-06T19%3A58%3A20.6323233Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsoaub62eurnzdifwo7e77bgqrt7fivukaz4yf55nyihuusp22bxvvfaxbg7shr3vj/providers/Microsoft.RecoveryServices/vaults/clitest-vault3t46uqfmvjk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulty7b3wxrlvid","etag":"W/\"datetime''2020-11-20T08%3A56%3A17.6468125Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtgjef77rrkyciukhkwgo7vw7fdvvzeb7jcos2hiv3avuwqvxdzr5itcmt7fiskvgf/providers/Microsoft.RecoveryServices/vaults/clitest-vaulty7b3wxrlvid","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnq2rj7lugpp","etag":"W/\"datetime''2021-02-24T03%3A44%3A45.4256025Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtiatra4fev6wyhaqqebw4g4i64hoi5ncmv5rg77ff3cqs7c7jm37mbixepek2oef3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnq2rj7lugpp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulto4tpsiwpzxa","etag":"W/\"datetime''2021-05-10T10%3A16%3A04.1084617Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtkn6ito4cvb46nreqy7hfff2qhvvvkr44igtm6k6l2o4amhwhw6rgpzqeh3633gvv/providers/Microsoft.RecoveryServices/vaults/clitest-vaulto4tpsiwpzxa","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault22ugzkb5r32","etag":"W/\"datetime''2021-04-16T06%3A50%3A45.4898698Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsw2ukakywa3q7wujjy5joyqwqaep4ylpsdrpo6ujad25ax4bnpsxg3tvpdvv7nec/providers/Microsoft.RecoveryServices/vaults/clitest-vault22ugzkb5r32","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultamycs2adsxm","etag":"W/\"datetime''2021-04-23T03%3A42%3A53.4641869Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.RecoveryServices/vaults/clitest-vaultamycs2adsxm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultlqwppt573mw","etag":"W/\"datetime''2021-04-23T03%3A19%3A17.5029038Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgunjnme2ww5qbwyw4hms5xm4ctkhhugzmtgtphgos4ez6jadd6fltwagzyjrdzokcv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlqwppt573mw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnmbolbfj3qw","etag":"W/\"datetime''2021-04-16T06%3A50%3A44.8712762Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguwz3fl6ckl3ubtynwzsmm5w62w6e7c6dqsscad6nw4mgvehtnl7jsx3utkvoliwgc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnmbolbfj3qw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqjsp6z2vs2g","etag":"W/\"datetime''2021-04-23T03%3A42%3A53.5692864Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv3m577d7ho/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqjsp6z2vs2g","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultomkzlpcl3ju","etag":"W/\"datetime''2021-05-13T19%3A47%3A55.1500599Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvj4x3xwhmxz3pqp5r5wqn5qflymtkma55s3wxse2gdxohpvr3nbgzwvcstvc4ozrt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultomkzlpcl3ju","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultubxs2tf7fa7","etag":"W/\"datetime''2021-04-19T02%3A46%3A57.4545594Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvjavixfqwz6cxvpkn6u54ajk3fa6jjz4ruxuohjeynusnabiadcmmropup73v5lqw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultubxs2tf7fa7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultsuedfxc436s","etag":"W/\"datetime''2021-04-16T09%3A03%3A44.2611929Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvproscgkhupyyrpzzmwyxdhaqqym7fjyj52ps3anzusy3goveigck7enpd36av6rk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsuedfxc436s","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6hmnpzruvsg","etag":"W/\"datetime''2021-04-16T09%3A03%3A44.1460814Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvps3sf22mukyrzd7x6w4ajs5dk7vyinvdnffr2vzto7vsewldkaf4ytq3yflabwrc/providers/Microsoft.RecoveryServices/vaults/clitest-vault6hmnpzruvsg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultj24sii3xnu7","etag":"W/\"datetime''2021-04-19T02%3A46%3A57.4845878Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvt3xx3e4uwhbuq3pmtkf72fl674usgxlhezwreh6vdf4jbsvnf4pwohlb7hyyj6qy/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj24sii3xnu7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultytkeiw4qv3i","etag":"W/\"datetime''2021-04-22T07%3A54%3A14.8325553Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw5dhiglvdolglnw3dit2ow2ixmwq445xetj43lmxa5ifd73nckm6c55lk7h7pccdh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultytkeiw4qv3i","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultdpir4zvghxs","etag":"W/\"datetime''2021-04-16T06%3A50%3A46.1354876Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwc7ts3azg6bdqihggw5qdd5ehoxtv7aeg2nhceusvpkck6k4rdp7iscgxfbzlj7c2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdpir4zvghxs","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultn3kyxin2ljd","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.5389022Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxp7uwuibs5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultn3kyxin2ljd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4rni35bv7np","etag":"W/\"datetime''2020-12-18T04%3A38%3A15.8595053Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2vkoxuqrkflvumtf2cs42vd4huiiv4pk4o4xmhpyce6ug23j46daynwtwkjn2gs5/providers/Microsoft.RecoveryServices/vaults/clitest-vault4rni35bv7np","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzi3ty6xwj64","etag":"W/\"datetime''2021-05-13T10%3A04%3A42.6255835Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyk6rymen54chxfmrtb6kaau4viqckwvcnl4pzr6zdr2pagi3gnbeguemrtkevo376/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzi3ty6xwj64","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultkxobma56w55","etag":"W/\"datetime''2021-05-06T19%3A46%3A16.0599336Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgys7jeahafoxuf7e47eh3gqs33cleoo74dhmh3h2gmv6qkmwoqkh3onsc35ovetc36/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkxobma56w55","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcntn5lu4qm7","etag":"W/\"datetime''2021-04-23T03%3A19%3A17.3447534Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgytlj3h6ek6u6zcw2vu43mmpfeoc36pfkyguzbfo6t7iewhdpqvw7k4fottksi772t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcntn5lu4qm7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault2cpp4w4w2ni","etag":"W/\"datetime''2021-04-22T07%3A54%3A15.837511Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyy65r2sz5fo634ynjpnltnzyu4sn5nfjo4lwn4lb6z4c6rxqn7jtocew3ah5dnpft/providers/Microsoft.RecoveryServices/vaults/clitest-vault2cpp4w4w2ni","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnurwnxirxop","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.4588266Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjznhcqaoh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnurwnxirxop","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultuhlswznr3i2","etag":"W/\"datetime''2020-10-23T16%3A31%3A56.5569141Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgztlr5u55tyzz2zje2tgl6tahkxxyrunwxdg7vkdludpwn5x3fd3z2ytjyc5lwc4vb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuhlswznr3i2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultsn5dn6zaabo","etag":"W/\"datetime''2021-04-19T02%3A46%3A57.5676663Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgztyt5ogttz2mmnfaxyqccdipxxliejfhinf2ffgljnlhywaxxmzzis5hygy3y5yp4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsn5dn6zaabo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"japaneast","name":"vault296","etag":"W/\"datetime''2020-08-05T05%3A33%3A57.7208147Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-yakou2/providers/Microsoft.RecoveryServices/vaults/vault296","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' headers: cache-control: - no-cache content-length: - - '57814' + - '65112' content-type: - application/json; charset=utf-8 date: - - Mon, 11 Jan 2021 06:06:21 GMT + - Thu, 20 May 2021 05:35:24 GMT expires: - '-1' pragma: @@ -250,17 +244,10 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 12aa6016-9bdf-44fd-8d82-9427d488817d - - 12aa6016-9bdf-44fd-8d82-9427d488817d - - 12aa6016-9bdf-44fd-8d82-9427d488817d - - 12aa6016-9bdf-44fd-8d82-9427d488817d - - 12aa6016-9bdf-44fd-8d82-9427d488817d - - 12aa6016-9bdf-44fd-8d82-9427d488817d - - 12aa6016-9bdf-44fd-8d82-9427d488817d - - 12aa6016-9bdf-44fd-8d82-9427d488817d - - 12aa6016-9bdf-44fd-8d82-9427d488817d - - 12aa6016-9bdf-44fd-8d82-9427d488817d - - 12aa6016-9bdf-44fd-8d82-9427d488817d + - 4c61e50e-89bb-4581-aca5-0dbed24b7f71 + - 4c61e50e-89bb-4581-aca5-0dbed24b7f71 + - 4c61e50e-89bb-4581-aca5-0dbed24b7f71 + - 4c61e50e-89bb-4581-aca5-0dbed24b7f71 status: code: 200 message: OK @@ -278,15 +265,15 @@ interactions: ParameterSetName: - -g User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01 response: body: - string: '{"value":[{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2021-01-11T06%3A06%3A17.7900524Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-11T06%3A05%3A55.4639256Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-11T06%3A05%3A43.2793952Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-01-11T06%3A06%3A06.0529456Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}]}' + string: '{"value":[{"location":"westus","name":"clitest-vault000005","etag":"W/\"datetime''2021-05-20T05%3A35%3A22.0041873Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000005","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-05-20T05%3A35%3A12.5025405Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-05-20T05%3A35%3A04.7240986Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T05%3A34%3A56.8796169Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}]}' headers: cache-control: - no-cache @@ -295,7 +282,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:06:21 GMT + - Thu, 20 May 2021 05:35:26 GMT expires: - '-1' pragma: @@ -327,8 +314,8 @@ interactions: ParameterSetName: - -n -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -344,7 +331,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:06:23 GMT + - Thu, 20 May 2021 05:35:27 GMT expires: - '-1' pragma: @@ -360,7 +347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -380,8 +367,8 @@ interactions: ParameterSetName: - -n -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -397,7 +384,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:06:25 GMT + - Thu, 20 May 2021 05:35:29 GMT expires: - '-1' pragma: @@ -437,8 +424,8 @@ interactions: ParameterSetName: - -n -g --backup-storage-redundancy User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: PUT @@ -454,7 +441,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:06:29 GMT + - Thu, 20 May 2021 05:35:32 GMT expires: - '-1' pragma: @@ -470,7 +457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1181' + - '1199' x-powered-by: - ASP.NET status: @@ -490,8 +477,8 @@ interactions: ParameterSetName: - -n -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -507,7 +494,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:11:32 GMT + - Thu, 20 May 2021 05:40:34 GMT expires: - '-1' pragma: @@ -523,7 +510,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -543,8 +530,8 @@ interactions: ParameterSetName: - -n -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -560,7 +547,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:11:35 GMT + - Thu, 20 May 2021 05:40:36 GMT expires: - '-1' pragma: @@ -598,8 +585,8 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: DELETE @@ -613,7 +600,7 @@ interactions: content-length: - '0' date: - - Mon, 11 Jan 2021 06:11:44 GMT + - Thu, 20 May 2021 05:40:43 GMT expires: - '-1' pragma: @@ -623,7 +610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '8' + - '9' status: code: 200 message: OK @@ -639,30 +626,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01 response: body: - string: '{"value":[{"location":"westus","name":"vault609","etag":"W/\"datetime''2020-05-04T08%3A41%3A11.4951522Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/00prjai1/providers/Microsoft.RecoveryServices/vaults/vault609","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-01-11T06%3A05%3A55.4639256Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-01-11T06%3A05%3A43.2793952Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-01-11T06%3A06%3A06.0529456Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultlfip4trewir","etag":"W/\"datetime''2021-01-11T05%3A27%3A17.2829381Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgur5z4wscam46jsesr7ew2gxlodwbmsbom53jzxnrnvnsceljdiwh7gaorii7bz3tj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlfip4trewir","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"mkheraniVault","etag":"W/\"datetime''2019-04-15T23%3A42%3A41.7821546Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/mkheraniVault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"satishrevault","etag":"W/\"datetime''2017-10-30T03%3A27%3A30.7613223Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-westus/providers/microsoft.recoveryservices/Vaults/satishrevault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"westus","name":"hiagaSQL2-vault","etag":"W/\"datetime''2020-09-06T02%3A06%3A36.6143346Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL2-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL2-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagaSQL3-vault","etag":"W/\"datetime''2020-09-07T04%3A24%3A03.0496077Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL3-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL3-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagawus-vault","etag":"W/\"datetime''2020-11-11T13%3A51%3A50.5578587Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"bf788512-db64-4d8a-9ac0-7200af6e47cc","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"hiagawusCRR-vault","etag":"W/\"datetime''2020-12-15T02%3A19%3A12.7006676Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"10-2021","Purpose":"Testing"},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"68a94769-bcbc-4095-9cf6-0d90d7425f24","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawusCRR-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"oneboxtestvault","etag":"W/\"datetime''2018-12-03T11%3A43%3A44.5596632Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/oneboxtestrg/providers/Microsoft.RecoveryServices/vaults/oneboxtestvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcVaultCredsWestUSChrome","etag":"W/\"datetime''2019-06-18T12%3A40%3A35.0425019Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcVaultCredsWestUSChrome","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"riteshcWestUSEdge","etag":"W/\"datetime''2019-06-17T06%3A54%3A33.3108046Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/riteshcRG/providers/Microsoft.RecoveryServices/vaults/riteshcWestUSEdge","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"satishrewus","etag":"W/\"datetime''2018-06-19T09%3A32%3A54.5145683Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishrewus/providers/Microsoft.RecoveryServices/vaults/satishrewus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westus","name":"shracsql","etag":"W/\"datetime''2019-06-17T09%3A28%3A13.468613Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/shracsql","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"adigupt-vault","etag":"W/\"datetime''2020-05-08T14%3A07%3A50.5556413Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adigupt-rg/providers/Microsoft.RecoveryServices/vaults/adigupt-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaCRR-vault","etag":"W/\"datetime''2021-01-05T14%3A55%3A03.2465212Z''\"","tags":{"Owner":"hiaga","MAB - Used":"Yes","DeleteBy":"01-2022","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaCRR-rg/providers/Microsoft.RecoveryServices/vaults/hiagaCRR-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL-vault","etag":"W/\"datetime''2020-08-21T03%3A53%3A00.0441246Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"12-2099","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL4-vault","etag":"W/\"datetime''2020-09-08T08%3A43%3A44.3952849Z''\"","tags":{"MABUSed":"Yes","Owner":"hiaga","DeleteBy":"10-2020","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL4-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL4-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaSQL5-vault","etag":"W/\"datetime''2020-10-08T09%3A46%3A01.4670715Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"02-2020","Purpose":"Testing","AutoShutdown":"No"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagaSQL5-rg/providers/Microsoft.RecoveryServices/vaults/hiagaSQL5-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaeastus2-vault","etag":"W/\"datetime''2020-12-08T14%3A36%3A03.5118198Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"851f9a31-cdc0-4824-ba3b-229f181425b3","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeastus2-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"hiagaeus-vault","etag":"W/\"datetime''2020-12-23T09%3A34%3A03.0448565Z''\"","identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d7b03182-a7fa-491c-82e8-dfd410995968","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawus-rg/providers/Microsoft.RecoveryServices/vaults/hiagaeus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastus","name":"testvaulteus","etag":"W/\"datetime''2018-12-17T16%3A02%3A48.3946206Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shracrg/providers/Microsoft.RecoveryServices/vaults/testvaulteus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westeurope","name":"satishrewe","etag":"W/\"datetime''2018-06-22T12%3A08%3A54.1868106Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishre_werg/providers/Microsoft.RecoveryServices/vaults/satishrewe","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastasia","name":"akneema-crr-vault","etag":"W/\"datetime''2020-12-18T08%3A57%3A31.9807857Z''\"","tags":{"Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"eastasia","name":"akneema-vault-eastasia","etag":"W/\"datetime''2021-01-04T09%3A17%3A59.5133999Z''\"","tags":{"MABUsed":"Yes","Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-vault-eastasia","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"afsexistingvault","etag":"W/\"datetime''2020-03-31T13%3A54%3A34.020273Z''\"","tags":{"Purpose":"Testing","Owner":"akkanase","Delete - By":"12-2020"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/afstests/providers/Microsoft.RecoveryServices/vaults/afsexistingvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akeema-vault","etag":"W/\"datetime''2020-11-20T13%3A22%3A52.8562272Z''\"","tags":{"MAUsed":"Yes","DeleteBy":"12-9999","Owner":"akneema","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akeema-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-crr-test-vault","etag":"W/\"datetime''2021-01-06T06%3A01%3A26.0627776Z''\"","tags":{"Owner":"akneema","Purpose":"Testing","DeleteBy":"12-9999","MABUsed":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-test-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"akneema-crr-vault2","etag":"W/\"datetime''2020-12-11T13%3A28%3A17.2415669Z''\"","tags":{"MABUsed":"Yes","Purpose":"Testing","DeleteBy":"12-9999","Owner":"akneema"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.RecoveryServices/vaults/akneema-crr-vault2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"anagra1","etag":"W/\"datetime''2020-03-06T03%3A58%3A14.4344656Z''\"","tags":{"MAB - Used":"Yes","test":"t"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/backuprg/providers/Microsoft.RecoveryServices/vaults/anagra1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcwr6nizwavp","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.9545679Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg277r2zpenav24joabbpzwijewtrgr3yl35mdbh5av45oqjv7log62kttvpxt5y7h3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcwr6nizwavp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultjr4ethvhvjc","etag":"W/\"datetime''2021-01-10T17%3A55%3A38.4416342Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2rfypppts5rjrrfr7ifjojuvs6rm2usnk75hlq3vwmh3jpvxz4o2nzbhx5oxxfmcp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjr4ethvhvjc","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbfxavivqf7s","etag":"W/\"datetime''2021-01-11T05%3A13%3A28.8762878Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ewuga7m5q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbfxavivqf7s","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultucosyyhak52","etag":"W/\"datetime''2021-01-09T20%3A28%3A27.7341371Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bor6n6gihygmrccl4pnljoxzywwp3crd5qr6nqvcegjpgpgcuij77vhingmhjsyb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultucosyyhak52","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulta3ouvoekp6t","etag":"W/\"datetime''2021-01-11T05%3A13%3A29.9533199Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4slvxfqd2u/providers/Microsoft.RecoveryServices/vaults/clitest-vaulta3ouvoekp6t","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpxde47exagx","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.2058238Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4wklpcfkgf7z2dmo6yirtwditpr6dv5ucorh676hhonvegblxjeoifav3gzbonc2i/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpxde47exagx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultk7in3qjdxfr","etag":"W/\"datetime''2021-01-06T15%3A58%3A34.1417672Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5573ubw6roitcsrdz6hzza2empzhwymsal6xjfz7dmammdgx3cdj5hyffepoj5oxf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk7in3qjdxfr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultuflhhudbt3u","etag":"W/\"datetime''2021-01-10T17%3A55%3A35.8411364Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5g5s7xpe34k72pynp75g7jny7tr2wetfuo3ed4iqip4sw6bywv676oa3xywsh3k7j/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuflhhudbt3u","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault25xlq7dib23","etag":"W/\"datetime''2021-01-08T17%3A03%3A08.7326212Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5jbe2uazdxp7zjpm22gdx2gp64hvy3weckmenc6nezzymq2f6l6n6nko2amqrnvzb/providers/Microsoft.RecoveryServices/vaults/clitest-vault25xlq7dib23","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwmpl3qgwfg4","etag":"W/\"datetime''2021-01-07T04%3A54%3A30.3460476Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5xuqn4xdnqfvm3hlgevt5osktky7cca3rtwgmg7zsntdew2gg5ixpp7zxrtuaopah/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwmpl3qgwfg4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnh6xp2wkpzx","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.0676763Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5z6lqplkl5xl5cqwg3xotn6z3fnnih3uoukfmxpnsqnsvdvdz7yrp52jdjczwgegj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnh6xp2wkpzx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbf6sdjrxctn","etag":"W/\"datetime''2021-01-08T14%3A22%3A43.7596075Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5zfaooyu3ci4bhk64bmrjmt2x3s3rcihukwnoxwbmm3t7dip6jtewrctvmigge7xw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbf6sdjrxctn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqlhigqsi2cf","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.7160857Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6jjuk24bbq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqlhigqsi2cf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvnakqvrqgzt","etag":"W/\"datetime''2021-01-06T14%3A45%3A22.3124515Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7eeg5kn2wluu7ldvilbazxkno6wskki5gnab5tgxalbjmxk3x7gtcsw7eszm46tj2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvnakqvrqgzt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgjk7mz6fyhf","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.5948619Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7urwpve2juwektv5s4642zs5xeakyxcmw3poj3ndiu65n7wxiovz2xwgjdc3fsmuc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgjk7mz6fyhf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault5szzol4kfzd","etag":"W/\"datetime''2021-01-11T05%3A24%3A29.7994324Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaewowgsrym/providers/Microsoft.RecoveryServices/vaults/clitest-vault5szzol4kfzd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgapuxwdjibg","etag":"W/\"datetime''2021-01-11T05%3A13%3A29.4488365Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgambqpctfh7dkrui6onxbnyadhrnzpwpvxwqrzgb7yrwfriolueoeoj7lahebspbht/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgapuxwdjibg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfvsi6g66uth","etag":"W/\"datetime''2021-01-07T11%3A25%3A56.1212289Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb7nrg72xp5gp3zhqyter6xdlxrz2haedz3562ska7wzqed3otvm4eea4uzd2vnpba/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfvsi6g66uth","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultk7eta74baok","etag":"W/\"datetime''2021-01-07T07%3A34%3A22.6756673Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgceahedzhenlacupvfnpc23czgmtc43w3z4d4zdobn4sanzia2n4aseddba3ldxsjb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultk7eta74baok","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultu3duvsfrync","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.1234067Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcoabmppv64fencfttdqlhkvd7vwi7p6nubejoofb66kuggbe4nnkci6pxc6ipo4et/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu3duvsfrync","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcumrfa7o4zt","etag":"W/\"datetime''2021-01-08T08%3A45%3A52.6634888Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd3a2hwy47en62f57wkpvrzxezog3pblaswlfotnhipimvkjlttthlqmx2ezpqbo7q/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcumrfa7o4zt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault726ru236iyu","etag":"W/\"datetime''2021-01-11T05%3A18%3A29.7488289Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rge4useixderuvq52snvipbhksc6d7phjgict2ykdyj4tdt35wrhiejoebgkoatrmo6/providers/Microsoft.RecoveryServices/vaults/clitest-vault726ru236iyu","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvfh3djlop4f","etag":"W/\"datetime''2021-01-10T17%3A55%3A36.607874Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rge7sivckznpxcnvxe57jfdmwkvzigzxracwbofqlladeueocr7t6ond36x662z76xx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvfh3djlop4f","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultir3l4dazut5","etag":"W/\"datetime''2021-01-11T05%3A28%3A16.3106544Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeesvwvwn2j/providers/Microsoft.RecoveryServices/vaults/clitest-vaultir3l4dazut5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvmm6pq74jlf","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.8714654Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeytjrlmliz4jkibkbn3ajhahfs63lsosqydzckunbwgo6myzw434zter6sgspvth5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvmm6pq74jlf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultes3komvrsft","etag":"W/\"datetime''2021-01-07T12%3A57%3A36.7199916Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfuev6k4keu7g3hgdixiaut76wnamny4piftf6vggrgtdzpjz5kjpp2h4d2ytgaafm/providers/Microsoft.RecoveryServices/vaults/clitest-vaultes3komvrsft","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4teeoxjz6cy","etag":"W/\"datetime''2021-01-10T16%3A51%3A40.8654697Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgicfsoyku7j6x3s2m7pwu7p3zourq6opiwgmpekdfvm6cqkfhpoi5mdux3kmniw27b/providers/Microsoft.RecoveryServices/vaults/clitest-vault4teeoxjz6cy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultt4s2mpne5yi","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.1507977Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkduoc63ee54eaxrnnlsm2tuyihkjc46ixdwarei2qlrtufe5r5u644qbth6w66td3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultt4s2mpne5yi","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultreg4rfedycg","etag":"W/\"datetime''2021-01-08T12%3A42%3A50.8979163Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglfnpmmbtd5yogwh46k7hygjf7gcrwnp3t2nynwl5ex6z742j5p7u5e4gibmu6wg7f/providers/Microsoft.RecoveryServices/vaults/clitest-vaultreg4rfedycg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcg7ibkqz34a","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.5128492Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn3hjatsouk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcg7ibkqz34a","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulto4ngmcfovez","etag":"W/\"datetime''2021-01-08T10%3A54%3A34.5632529Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnwc3kdwadxlimi2o4dhxi5zqpzqnqhfc5olpz5jl4qecy4rp4rkyfchf7odkbqhob/providers/Microsoft.RecoveryServices/vaults/clitest-vaulto4ngmcfovez","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnlrsk45iv6i","etag":"W/\"datetime''2021-01-11T05%3A13%3A28.813227Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo35yb5xe4y5hbz2amdf4nzt2wbjzemxylcbuakn3anoloc7rdc5qknit7czctwvie/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnlrsk45iv6i","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultjwonznvxhfm","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.012624Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgohsok6mg4kofwjgpiu7tbz3z5ohhc42iduah6zxz7rxctkcomfyzx5utdzzcvonmz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjwonznvxhfm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulte33hczi5bqg","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.8444391Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoi6gqgab64fyzl734vunv4x5icbqymrupovhfpb2vroj4m2wthwyrmhnp2vlsi7xy/providers/Microsoft.RecoveryServices/vaults/clitest-vaulte33hczi5bqg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpc5ovgpgkde","etag":"W/\"datetime''2021-01-10T17%3A55%3A37.2785201Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoohifemlsjo3xzrik5634jk57y7ks2tu3kurincl6q6ywnm2t2tre35ghkfq3yroa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpc5ovgpgkde","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxw7ernlqmb3","etag":"W/\"datetime''2021-01-11T05%3A44%3A57.8875164Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp7lqsusvjyopu6izt4qmp2us2372vudbaieylbejw7mkhxv5yc54bal7e3z7b4kqq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxw7ernlqmb3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault7lbokail5d4","etag":"W/\"datetime''2021-01-11T05%3A28%3A16.3236668Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpbzojnjtnvfnq4ujibgawkljvet62kofefkwki64u53d422rbmxmnnolr6ytbplda/providers/Microsoft.RecoveryServices/vaults/clitest-vault7lbokail5d4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultphhdbykx4jt","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.9142756Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpo3z5i5tc3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultphhdbykx4jt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultx2jd5l4kpuq","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.5411469Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq4r5sp2rw26xgyv3ry3czw72t35hfmpnld4k2xf7vqwd6e6gvyhavpvkgypvpms7g/providers/Microsoft.RecoveryServices/vaults/clitest-vaultx2jd5l4kpuq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxgggo6obmge","etag":"W/\"datetime''2021-01-11T05%3A24%3A30.2588727Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq7z2f6xakf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxgggo6obmge","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault542uowsygix","etag":"W/\"datetime''2021-01-11T05%3A24%3A31.1607369Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqlg3rf3hei/providers/Microsoft.RecoveryServices/vaults/clitest-vault542uowsygix","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultu4c2x7tachz","etag":"W/\"datetime''2021-01-09T16%3A42%3A20.6221849Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqozivfz7cvfzigvzfi7qzm6oazhemnmqsl2r5pstmw5u42aprlz5n34kfr3juqcyh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultu4c2x7tachz","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzbutyxwykn5","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.8865027Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr6n3g5bmo77wyrmdopwkqtngr7ysjgao2v7i4e2hmtqjlmdxtahy7ryaa56nscwgc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzbutyxwykn5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultj4tk2etksoe","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.1307363Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrji2rvsstak74vd7u6jtxhrv7tpmor5t27ybqzq6gmvzi4d6uszx4xczcsxh6twt5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj4tk2etksoe","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultffztcamksk2","etag":"W/\"datetime''2021-01-11T05%3A27%3A16.0738895Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrwdyzk7pzd7e6h5me5idpqckp4gwlsjohfo6bps2nrp5o6j7upietuvqpmkmwn54p/providers/Microsoft.RecoveryServices/vaults/clitest-vaultffztcamksk2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4bfjnrbb447","etag":"W/\"datetime''2021-01-11T05%3A24%3A30.3089206Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs5ohknj4mi/providers/Microsoft.RecoveryServices/vaults/clitest-vault4bfjnrbb447","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulteddpkaxths2","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.49283Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs7lqkysvww/providers/Microsoft.RecoveryServices/vaults/clitest-vaulteddpkaxths2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultligftfuozzs","etag":"W/\"datetime''2021-01-11T05%3A24%3A29.6062473Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsi44xot3of/providers/Microsoft.RecoveryServices/vaults/clitest-vaultligftfuozzs","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulta5f5nzdvvku","etag":"W/\"datetime''2021-01-11T05%3A07%3A01.1574617Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsizffjmto327o6fzaplyxds7vwzfv7pf6sy3cslmk5im3bu3nzchseids2vba4pb6/providers/Microsoft.RecoveryServices/vaults/clitest-vaulta5f5nzdvvku","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulttwfjblszvam","etag":"W/\"datetime''2021-01-11T05%3A04%3A08.9613203Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsqav3wldo7/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttwfjblszvam","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulterxnp5nbhjk","etag":"W/\"datetime''2021-01-11T05%3A44%3A57.9986235Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgt4rjejvgoorkbs65fbm4mgz5gddesoxdz7y4oum4o6dy6ccu6e2ytbfe5lnsfkdlq/providers/Microsoft.RecoveryServices/vaults/clitest-vaulterxnp5nbhjk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault53mrvgdggaj","etag":"W/\"datetime''2021-01-10T05%3A33%3A28.8946127Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwlspgd4bkxcozrmer6ehqmp5e7fz5cn4qrprhlf3435pvit56ai2qb3vhkquefaia/providers/Microsoft.RecoveryServices/vaults/clitest-vault53mrvgdggaj","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpvkojszsw45","etag":"W/\"datetime''2021-01-11T05%3A27%3A16.0808958Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5b4jlr2b4i4en4yt5565tdozabduljfj22k7hlnrhzr7st2fvebq4w4n4xekqpzw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpvkojszsw45","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpyvjmigegvo","etag":"W/\"datetime''2021-01-11T05%3A24%3A31.1036822Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxjk5uqon77/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpyvjmigegvo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultlhi45vy3udq","etag":"W/\"datetime''2021-01-11T05%3A04%3A09.053409Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyg5u2o57xl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlhi45vy3udq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultmh5n35aaow6","etag":"W/\"datetime''2021-01-07T19%3A28%3A24.2834211Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyq7wzdlnegktw6aadl2z3w3l32uyzoms7i5gq5rhgkuvzoeb75dcroquj7c7ok2qj/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmh5n35aaow6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqadnbffxljk","etag":"W/\"datetime''2021-01-10T17%3A28%3A28.6152432Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7c2ggv4m537qjgnox64jre3gd6ulzt3uqj6y2w2amvrowbht5ppwdmi42emh66zv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqadnbffxljk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6j5ywfo7of7","etag":"W/\"datetime''2021-01-11T05%3A44%3A58.3779895Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzbpnjfiq7qn4zu5cnjzpdqyztkiir23o576j3kgqjgeg4oypv76r2ubm3uua3upn5/providers/Microsoft.RecoveryServices/vaults/clitest-vault6j5ywfo7of7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3gcnxkg5umf","etag":"W/\"datetime''2021-01-10T17%3A28%3A29.4090038Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzhpcwbvjw6suhxpf5x5vlykbizgmwuhguc42u5s3sdi6kqrw7ayah4easunhw3zeh/providers/Microsoft.RecoveryServices/vaults/clitest-vault3gcnxkg5umf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultagqnmakqvlg","etag":"W/\"datetime''2021-01-07T09%3A24%3A46.6598763Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzp3dtvw2ofzomgvemjy3cp4wtygymmjbzr5ry2an2xfvnsgxj7dr4i7yljjnjpgbx/providers/Microsoft.RecoveryServices/vaults/clitest-vaultagqnmakqvlg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfyr4v7mjlv7","etag":"W/\"datetime''2021-01-11T05%3A28%3A15.6870568Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzwc5pf3r5cb44nk4rze35edkdviu7r3pygkgxxocwrlauqbua3gztgw52jtlndhwl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfyr4v7mjlv7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"rsanjayvault","etag":"W/\"datetime''2017-10-30T08%3A59%3A05.368417Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/rsanjayvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Satishrebkvault","etag":"W/\"datetime''2017-10-30T09%3A00%3A07.7300185Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Satishrebkvault","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"Yashvault001","etag":"W/\"datetime''2017-10-30T09%3A02%3A12.2382044Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-RecoveryServices-ResourceGroup-southeastasia/providers/microsoft.recoveryservices/Vaults/Yashvault001","type":"microsoft.recoveryservices/Vaults","sku":{"name":"RS0","tier":"standard"}},{"location":"southeastasia","name":"mayaggar-vault","etag":"W/\"datetime''2020-01-27T09%3A27%3A10.5580184Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mayaggarRG/providers/Microsoft.RecoveryServices/vaults/mayaggar-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"geetaVaultTest","etag":"W/\"datetime''2020-02-28T05%3A18%3A57.7162661Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.RecoveryServices/vaults/geetaVaultTest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"psbvtvmvault6248","etag":"W/\"datetime''2019-09-16T02%3A44%3A28.6865119Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/psbvtvmrg6248/providers/Microsoft.RecoveryServices/vaults/psbvtvmvault6248","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"sarath-softdelete-vault","etag":"W/\"datetime''2019-11-28T05%3A42%3A33.9933589Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-softdelete-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"vault906","etag":"W/\"datetime''2020-05-22T04%3A51%3A12.428869Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg2/providers/Microsoft.RecoveryServices/vaults/vault906","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"SatishreVault","etag":"W/\"datetime''2018-06-15T13%3A23%3A10.1167645Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SatishreRG/providers/Microsoft.RecoveryServices/vaults/SatishreVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"southeastasia","name":"srbansVault1","etag":"W/\"datetime''2018-11-20T05%3A37%3A58.1114441Z''\"","tags":{"MAB - Used":" Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/srbansRG/providers/Microsoft.RecoveryServices/vaults/srbansVault1","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"japaneast","name":"mkheranijapantest","etag":"W/\"datetime''2018-09-07T14%3A31%3A53.4637513Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mkheranijapantest/providers/Microsoft.RecoveryServices/vaults/mkheranijapantest","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"australiaeast","name":"satishreae","etag":"W/\"datetime''2018-06-13T07%3A43%3A23.0340224Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/satishreae/providers/Microsoft.RecoveryServices/vaults/satishreae","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"centralindia","name":"sudreddyincvault","etag":"W/\"datetime''2018-06-15T12%3A51%3A41.1306151Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sudreddyinc/providers/Microsoft.RecoveryServices/vaults/sudreddyincvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"standard"}},{"location":"southindia","name":"jakavetVault","etag":"W/\"datetime''2020-04-15T14%3A45%3A31.2234657Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakavetRG/providers/Microsoft.RecoveryServices/vaults/jakavetVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"anagra-wcus","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.2068887Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anagrarg/providers/Microsoft.RecoveryServices/vaults/anagra-wcus","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"westcentralus","name":"hiagawcus-vault","etag":"W/\"datetime''2020-07-21T11%3A03%3A12.6344999Z''\"","tags":{"MABUsed":"Yes","Owner":"hiaga","DeleteBy":"12-2099","Purpose":"Testing"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hiagawcus-rg/providers/Microsoft.RecoveryServices/vaults/hiagawcus-vault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}},{"location":"uksouth","name":"BackupVault","etag":"W/\"datetime''2019-07-03T12%3A14%3A44.5128722Z''\"","tags":{"MAB - Used":"Yes"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nilay-rg/providers/Microsoft.RecoveryServices/vaults/BackupVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' + string: '{"value":[{"location":"westus","name":"backupvault","etag":"W/\"datetime''2021-04-26T01%3A26%3A59.2685383Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/backuptest/providers/Microsoft.RecoveryServices/vaults/backupvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"sqlvault","etag":"W/\"datetime''2021-04-29T08%3A09%3A37.2280081Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultcriakztggjr","etag":"W/\"datetime''2019-10-16T14%3A48%3A56.3435946Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2qgvxjxy46scnjuh6q5gtypebpi5oeuajfgxb7yrrsggnqxrij6pnc3d7ybz2chih/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcriakztggjr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultonvx2gbjtjz","etag":"W/\"datetime''2019-10-15T16%3A56%3A36.1385797Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg35pihforqftkb5qllg3t75zoxlztjwsmuftgdsphbiy2r3adx3t3spnkzzs2c5c4s/providers/Microsoft.RecoveryServices/vaults/clitest-vaultonvx2gbjtjz","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultpt3klogesmxq73dzbpac6znvqrjajn6w725fn","etag":"W/\"datetime''2021-05-20T02%3A45%3A10.1233532Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36quksxgqcg6tjphnso7dbin4kn2h4nnupmzr77u5blvgc3v6tiny2exbbdtzdjwt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpt3klogesmxq73dzbpac6znvqrjajn6w725fn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultjs23w5bobvn","etag":"W/\"datetime''2019-10-17T15%3A43%3A31.7852556Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3s3h2izedr4olwdk4jqjhltn4lkukfixgfalhtfjmiy6u3xndqvdkrr4j4jqhx6hu/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjs23w5bobvn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault4dwvbxrcdlv","etag":"W/\"datetime''2020-07-07T07%3A27%3A02.8582003Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4vzcctackr3xkeouuakrlu3v5iahfsyh5tbu6wimbgipsvlnnydknmqqzno4naid6/providers/Microsoft.RecoveryServices/vaults/clitest-vault4dwvbxrcdlv","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultqcbszkdhprt","etag":"W/\"datetime''2019-11-11T08%3A59%3A44.6712483Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6mxjzuorkskzxoisjj4q7leopfu5mge2nncxfuw33pn7w5rzgt6nqhx3f2koq427p/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqcbszkdhprt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultvgik7njuazq","etag":"W/\"datetime''2019-11-11T08%3A59%3A47.6711273Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgduxuhyeqzrek7s3jfr776qvugv4qtmrxnlqcwiodxu2wihvqvuajr5bvtbfw2c74d/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvgik7njuazq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultijxt4x4hr4n","etag":"W/\"datetime''2019-11-11T08%3A59%3A50.9913157Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdzk3w2kpwtbjaippkz6nrab53pinz3nbdcoxurf2fm477d5j2qa43kpmvlh34nudn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultijxt4x4hr4n","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultuzuyi24axgn","etag":"W/\"datetime''2020-07-07T07%3A20%3A14.6807642Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggnjd24vd3426k7xejyyb5lcp6f6zir5trgy7ctsdcy5ea4ibnyyym3puwxifrgvgk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuzuyi24axgn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaulte5qqz3zjihv","etag":"W/\"datetime''2019-10-17T15%3A42%3A56.7423779Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgib3viqdhrawwnaopavpcsc2u3psfod7wlami5tg57borlex2io2b7nolpz4qxhm5p/providers/Microsoft.RecoveryServices/vaults/clitest-vaulte5qqz3zjihv","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultqofbmffwsre","etag":"W/\"datetime''2019-10-18T00%3A59%3A25.0251012Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmjjmywipmiqslgzl7tzax3aje4fcv3q5xr2h7hulg63ehpwno2mu7ij7dokxqbh5x/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqofbmffwsre","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaulttsqo77eexzn","etag":"W/\"datetime''2019-10-17T15%3A44%3A59.3944443Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp535jz2dxemblsqlvzwsk4ehth7eprd5yny22fi5rppnick62nncsonvlutvmvbje/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttsqo77eexzn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultfe6e244jgwn","etag":"W/\"datetime''2019-10-15T16%3A55%3A25.8080725Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr5sog7j3q3a5o2vy3r4gpl3ylcovxfcbkttkotqe653iz4mlsrbjns76tv4v4lbqq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfe6e244jgwn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000004","etag":"W/\"datetime''2021-05-20T05%3A35%3A12.5025405Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000004","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000003","etag":"W/\"datetime''2021-05-20T05%3A35%3A04.7240986Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000003","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vault000002","etag":"W/\"datetime''2021-05-20T05%3A34%3A56.8796169Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.RecoveryServices/vaults/clitest-vault000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultfiskwqfysgb","etag":"W/\"datetime''2019-10-15T16%3A56%3A20.8170902Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguk5hr7imq2zbvjzaogkt7gke2onbbn6sr3ux5rfdiqufofpfrmblbmbzrtd663lkn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfiskwqfysgb","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaulttsindhzqq4y","etag":"W/\"datetime''2019-10-15T16%3A54%3A59.8465222Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyreu2qkpgqyrm56i4cocrrcf5xb2uzmvlm2lau226cqk6zetyu5olii7figpx2mix/providers/Microsoft.RecoveryServices/vaults/clitest-vaulttsindhzqq4y","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"westus","name":"clitest-vaultjlixfyp46tq","etag":"W/\"datetime''2019-11-11T08%3A59%3A48.025468Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzj3xc6lmggzuorcimokxvkq7lrrxtcty3dilmrxzwdjcq35dqahmc7e7snha4milh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjlixfyp46tq","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"eastus","name":"myVault","etag":"W/\"datetime''2020-05-28T11%3A18%3A58.9509269Z''\"","tags":{"patch_key":"PatchKeyUpdated"},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"28c68980-b35c-44b1-b007-47602eae336d","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.RecoveryServices/vaults/myVault","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6ht6hcki7pg","etag":"W/\"datetime''2021-02-25T03%3A23%3A37.0252781Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2gou4phnc7exgeyb7hljfdqyk5st2mvcr6ve65j2j2zgqrbndhlnlw4udb6gn4epb/providers/Microsoft.RecoveryServices/vaults/clitest-vault6ht6hcki7pg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzxijf4itnyp","etag":"W/\"datetime''2021-05-10T10%3A16%3A04.8681813Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg32v2w3fcaybvu6ezskhhtnarwqz25pebnauyfrzs33plt27gjpaayrimkxicaaw7d/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzxijf4itnyp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultukoqsmzbf7l","etag":"W/\"datetime''2021-04-16T09%3A03%3A44.5004236Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg36lwpm3ij3tluhlodhrj6qmswaoorpio4oruvlvxnxvbai4slgem5tll7vpbgzag7/providers/Microsoft.RecoveryServices/vaults/clitest-vaultukoqsmzbf7l","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4ek6vsryrqm","etag":"W/\"datetime''2021-04-16T02%3A27%3A26.4019025Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3ifgvca3bgt7crirwefjsorgjodjshgb4pb62jdizudofnzczkmgwvvf4e47jq6rv/providers/Microsoft.RecoveryServices/vaults/clitest-vault4ek6vsryrqm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgdgmfpbiclk","etag":"W/\"datetime''2021-05-13T09%3A05%3A50.3729789Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3r2ajl3krrgojnywposnu7vhdqj76ycgpknjar7jnrhti4pqcug233wgwxmu3zvux/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgdgmfpbiclk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultmker5hzw2jr","etag":"W/\"datetime''2021-05-13T19%3A47%3A56.9317538Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3xzfyzxirs7odmycxaop6hifpcszxmginvfvgyb4iicxsm65j5evvonszk7oxlchl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultmker5hzw2jr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwfvvjgyuoc3","etag":"W/\"datetime''2021-04-23T03%3A42%3A53.0908314Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46ia57tmnz/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwfvvjgyuoc3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultar474rkdjah","etag":"W/\"datetime''2020-12-18T04%3A38%3A05.4755355Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4ikwnaqyhmwijajn5xtsc4vjvtztotdvlgqbzlf6a63v6hrlpqdxwqccsjda4o25n/providers/Microsoft.RecoveryServices/vaults/clitest-vaultar474rkdjah","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultd4w7kja3ziz","etag":"W/\"datetime''2021-04-16T02%3A27%3A26.782267Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4y6idhtnlevqyctkcqfeogqplw4ntzoerpjsvbxifr4m7dlelxv4isc2x2wbeaozb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultd4w7kja3ziz","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultju4yj2laejy","etag":"W/\"datetime''2021-04-16T02%3A27%3A26.6761653Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5ogmurwwbgvnz3edpldghiz222ztjpoh2i2g7vr3xmf5wf2sgvfxqjgzcmttonyuf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultju4yj2laejy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault37l77wc5c65","etag":"W/\"datetime''2019-12-30T01%3A51%3A51.8140777Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6i4hl6iakg/providers/Microsoft.RecoveryServices/vaults/clitest-vault37l77wc5c65","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6xtsr67mvle","etag":"W/\"datetime''2021-05-06T19%3A46%3A16.773621Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6kyfedfcwp6sf5bxrii2gfql2fcrzrb3ykltkpiqnshtslkpb6pxelwf6a2vr2wib/providers/Microsoft.RecoveryServices/vaults/clitest-vault6xtsr67mvle","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultetraqqoyajx","etag":"W/\"datetime''2020-11-20T08%3A56%3A17.248435Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6q2l3p72qqjpfunzm7jjooz6jhbttu5hsrvd3ntvnpziwpzeefe34prc77w3drrzp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultetraqqoyajx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultsc5zwvzk3vb","etag":"W/\"datetime''2020-12-18T04%3A38%3A06.7958014Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6zauw27sl6ezzkzhluow5ftph4pjex2cgd5mzzjfv4rviudkm6rw5ey3mh2qkasfn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsc5zwvzk3vb","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultkveoay4ozx6","etag":"W/\"datetime''2020-10-29T20%3A08%3A52.6800968Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgad2rkdrk2yhzaptjchzxi4urhl6nptuogvmop47bsemxfupskti624nfybc3s3ihq/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkveoay4ozx6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultle5ttbn6okf","etag":"W/\"datetime''2021-04-22T08%3A17%3A37.0498961Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.RecoveryServices/vaults/clitest-vaultle5ttbn6okf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultootoqlqi765","etag":"W/\"datetime''2021-05-10T11%3A22%3A23.5671689Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbesxyrbjtdgy3nlamjr3oly65b4dgzbtstwfug3rlucua3hnz3hksyl45kdjscr2w/providers/Microsoft.RecoveryServices/vaults/clitest-vaultootoqlqi765","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4osjqryvake","etag":"W/\"datetime''2020-10-29T20%3A08%3A50.5440513Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbr2a2442ouo2khk6uuxheavwfrrdoftt5r4pgj2zgak67hqaxb6lihg4eyx26omka/providers/Microsoft.RecoveryServices/vaults/clitest-vault4osjqryvake","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault2ifqobie6yg","etag":"W/\"datetime''2021-05-13T19%3A47%3A55.2341401Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgckzonrbhv322hmhw2jgieyyxa7svbkcartk6fo3lcdkcwcykkbqmrwnh75br2hox3/providers/Microsoft.RecoveryServices/vaults/clitest-vault2ifqobie6yg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultepxlhzp2yr5","etag":"W/\"datetime''2021-04-21T01%3A34%3A08.3349888Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcr3hgftl3jffnz7kz3lznx4orhirnjdvcbimbyu5jzqn34n6fapxuv7eynwqcipx3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultepxlhzp2yr5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultssklzbyvhqy","etag":"W/\"datetime''2021-05-06T19%3A46%3A15.1920947Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcruq5do62s7h4cwufwdffsaj7q5p573edxuzppu4yoxpo2oul7pjh6l4feltfhjsk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultssklzbyvhqy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqs74nztibvf","etag":"W/\"datetime''2021-04-16T02%3A27%3A26.9684454Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcyuchmxb3nqblzc2dsmhfgvhb3au4fkftkzyhwozfnmyjnznan5iuxvg5busyq7xr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqs74nztibvf","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault7gzxmc2v2qx","etag":"W/\"datetime''2021-05-06T19%3A46%3A15.181084Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgd5zm2aygiepfeiq3ywztbbcvnml74tjq26zsy2sw6gcodhldv6m5qozzhxbyqdxmz/providers/Microsoft.RecoveryServices/vaults/clitest-vault7gzxmc2v2qx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultrpe7raylmtd","etag":"W/\"datetime''2021-04-22T08%3A02%3A14.5166807Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdc25pvki6m/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrpe7raylmtd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulta4byxhpqrvh","etag":"W/\"datetime''2021-04-22T08%3A02%3A14.5356992Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.RecoveryServices/vaults/clitest-vaulta4byxhpqrvh","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulthmbto4zryjv","etag":"W/\"datetime''2020-11-20T08%3A56%3A17.4155941Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgemk3m6yms6gmurrkkob3gdz25k4suv6fh6jh4yklmr2ujlzz42sj5y6ialqhuwywf/providers/Microsoft.RecoveryServices/vaults/clitest-vaulthmbto4zryjv","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultidso52ikujm","etag":"W/\"datetime''2021-05-10T10%3A16%3A03.7120864Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgerd3venp57ix5wmottia4o34avilk3k7b7dynbu5q2dqrciebrfrpsdwjlujjn6lr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultidso52ikujm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvxyrektlils","etag":"W/\"datetime''2021-04-19T09%3A33%3A01.9837396Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfdhl3n5c2qlsirfedrhdfz7sa7hop6bdcvwuid3jb4eit5kt46q6qnqmvwezfqfhe/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvxyrektlils","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultdornpuyy3lw","etag":"W/\"datetime''2021-05-13T19%3A53%3A50.7687418Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfr4gqrq5e4musvs4xqhiwj3jn2f4kksrbu65hexdinohevbcjemupw6jbo4u6zsdw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdornpuyy3lw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4opgimmxgkx","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.80115Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghkyqf7pb5/providers/Microsoft.RecoveryServices/vaults/clitest-vault4opgimmxgkx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzuqclzzofd3","etag":"W/\"datetime''2020-11-20T08%3A56%3A17.2214092Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggihmrio7mkr75oe7hhgfzlif36x2foqoaayd64obnotugzqiqrszmyluzk52spfyl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzuqclzzofd3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3qwr5xz5zxd","etag":"W/\"datetime''2021-04-22T08%3A17%3A37.3872165Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggrglkh7zr7/providers/Microsoft.RecoveryServices/vaults/clitest-vault3qwr5xz5zxd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6fhramr2xbw","etag":"W/\"datetime''2021-04-16T06%3A50%3A45.0064061Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh4ph4zy2imewaisnszkiwxynzkxdnjctkzt3wpjqljnhdfvwdvi4epjcn4xptkjc4/providers/Microsoft.RecoveryServices/vaults/clitest-vault6fhramr2xbw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3sj6yvn57qg","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.7440956Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh5duq2f6uh/providers/Microsoft.RecoveryServices/vaults/clitest-vault3sj6yvn57qg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultkyeuooxw7qk","etag":"W/\"datetime''2021-04-16T02%3A27%3A26.6961845Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh7lopm6fzohq7mlulpvlpqhttihe36cfdsmpja6yjuss6ygtgruojqpkvl3bwxybc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkyeuooxw7qk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultkhsud4sopec","etag":"W/\"datetime''2020-11-20T08%3A56%3A17.8530072Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghburwdz4jh4buzg5cpx3d6eryni73eognu2wq4ksembp4e4auxkiu6bbtvygcyult/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkhsud4sopec","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault2mcyjyexlj3","etag":"W/\"datetime''2021-05-13T21%3A26%3A51.0601223Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghgpaylamrtsx4xx7zrphjcdju7ulyd3h7mp22yscqroyfywm4lhqckwufpxg4bs5u/providers/Microsoft.RecoveryServices/vaults/clitest-vault2mcyjyexlj3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultyhh4qtwrkvr","etag":"W/\"datetime''2021-04-16T09%3A03%3A44.140076Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghwjqtoopozbfxfq4hdcey3unpgoy5oyhqmjisbqotba25knzuco4c34gz4zvmfl4e/providers/Microsoft.RecoveryServices/vaults/clitest-vaultyhh4qtwrkvr","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulti7z4xcxt6n3","etag":"W/\"datetime''2021-05-10T10%3A16%3A04.492826Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgianr3wcrvocmppkrmlej4pstinc4laxe45krmwaqyhmo2b7gxlwkpfr55vayqxq5y/providers/Microsoft.RecoveryServices/vaults/clitest-vaulti7z4xcxt6n3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultjselk5ngr52","etag":"W/\"datetime''2021-04-22T08%3A17%3A43.5891143Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgirzkpx2i6lh67zijfkonyp4lvgqlga3twirjnl725ekrwytxazkuwqxay6oq47vv6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultjselk5ngr52","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultunu4ks7dsie","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.5439066Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiudkrkxpl4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultunu4ks7dsie","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultedt62k7zvhu","etag":"W/\"datetime''2021-04-19T02%3A46%3A57.3094223Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjsmtn6spfh6tuz4jymouqr33xueb3lkbbv7bvfooroy5io7cd6oe3zayn56stpjyn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultedt62k7zvhu","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbp7mipyvtur","etag":"W/\"datetime''2021-05-10T10%3A16%3A02.8682876Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjwth5cumrwijua4asiceywlfq5ujweham4jmvrtgmmciosupops3pnfp2g2nt472f/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbp7mipyvtur","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault7gyxblvcxyl","etag":"W/\"datetime''2020-10-29T20%3A08%3A49.3218803Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjxtwf5stm5umtm5rckttyaegg5io6pununyfagprqp7lnju2gqge6tswaankwnhni/providers/Microsoft.RecoveryServices/vaults/clitest-vault7gyxblvcxyl","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault2o46ovwxh6w","etag":"W/\"datetime''2021-05-13T19%3A47%3A55.778659Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjyu6dv43m3ss43c7btgbeyv47s3mtllgql7vzctaesl452szjq4g5xsfqdrddytmz/providers/Microsoft.RecoveryServices/vaults/clitest-vault2o46ovwxh6w","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault555khmy7gcl","etag":"W/\"datetime''2021-05-10T11%3A22%3A29.1615009Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkljvq2k4n6fytvislwugdn2amscgl4jnwqv5v5vg4gt3xjher4ng563trwxp6yuu7/providers/Microsoft.RecoveryServices/vaults/clitest-vault555khmy7gcl","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultbnqnifjnwmm","etag":"W/\"datetime''2020-09-21T10%3A26%3A11.1333497Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgktqdge5ejbfsqxmn5ndvxksssyoaiim54yoqytc6zbl6pvkwbo345srev7wzwlosl/providers/Microsoft.RecoveryServices/vaults/clitest-vaultbnqnifjnwmm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultxkqlznz7lje","etag":"W/\"datetime''2021-04-22T08%3A02%3A13.89509Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6l3rg6atb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultxkqlznz7lje","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultpwtonqllxdn","etag":"W/\"datetime''2021-05-13T07%3A48%3A29.8090641Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltfej7yr4u/providers/Microsoft.RecoveryServices/vaults/clitest-vaultpwtonqllxdn","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultvs6ueenx6o3","etag":"W/\"datetime''2020-12-18T04%3A38%3A06.1401732Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm2qn6vwwfmea2fe3z3lhmsc37z4eaffax36w5sdka7hf4om6gm4iokxd6hstcl5ph/providers/Microsoft.RecoveryServices/vaults/clitest-vaultvs6ueenx6o3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnieezg6dop3","etag":"W/\"datetime''2021-04-19T02%3A46%3A57.3764857Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm36dc7buafab42cit7nllsktfxbc5wwfmmg3njvh6swz4vde6qxnpobg5qnudba7v/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnieezg6dop3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgqnhj5zjai4","etag":"W/\"datetime''2021-04-21T09%3A44%3A10.0400775Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmagtow5jdo466n33l3kldhfoyf3yz5xi63e66hmp43z5mksp3zcmswjruah7gddxp/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgqnhj5zjai4","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultudpvy7utmgj","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.2906678Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6glpfa25c/providers/Microsoft.RecoveryServices/vaults/clitest-vaultudpvy7utmgj","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultw3jhdr7xsms","etag":"W/\"datetime''2021-02-24T03%3A44%3A45.2364204Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnqth46sft7puyvrtnti6gghtzqhbajv3awlqrw63pthciz4gwbsbdlvf752nd2gau/providers/Microsoft.RecoveryServices/vaults/clitest-vaultw3jhdr7xsms","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwcrxvmhuw6r","etag":"W/\"datetime''2021-04-26T07%3A58%3A47.3961669Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoi4rkmss4v7mz2alxqdoloxwj5nd7ybefnnwfvgy4vcnovo2x2ai4s6cd5ubtieyg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwcrxvmhuw6r","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnrgwwu6beif","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.7761259Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgovptfsocfg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnrgwwu6beif","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgk5ow6chkdw","etag":"W/\"datetime''2021-04-22T07%3A54%3A16.0837451Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp2hvqabczyvptsn6wjtfrqbvrytv7hcqdlo73hd2dv25qdl3cg66yfgbem6jbvynk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgk5ow6chkdw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwari4g4xpyg","etag":"W/\"datetime''2021-04-23T07%3A13%3A20.0323684Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6ikwpcsq7/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwari4g4xpyg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnm2owurz6lb","etag":"W/\"datetime''2021-05-06T19%3A46%3A14.3632916Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpgrpid6dath7k7wi7jkfofswk5dtcxq5gucun5wdvea2vcqwkz7eqomkgsgvvxwe4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnm2owurz6lb","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgunmzmckpuy","etag":"W/\"datetime''2021-04-22T08%3A17%3A37.0298766Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptzwacrnwa/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgunmzmckpuy","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultw3cmavtcrmt","etag":"W/\"datetime''2021-04-22T06%3A01%3A48.6513491Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq27n6whd2zbhglk7engmisjahol67lmggoljx47mamt5i4x6dhbbauio543prkvdn/providers/Microsoft.RecoveryServices/vaults/clitest-vaultw3cmavtcrmt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultoos26bx55dw","etag":"W/\"datetime''2020-10-23T16%3A31%3A58.3966758Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqbb7oohiug623ibi4qy72xadbg37nvevzblxaea7ez3mait4fp4lfbgv5e5mlrs2z/providers/Microsoft.RecoveryServices/vaults/clitest-vaultoos26bx55dw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultd4ofzhqirrx","etag":"W/\"datetime''2021-04-26T14%3A04%3A27.3809359Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqeivxiczieodb6zvo3ywlvrpj7xsdy3p5p4pf4sj25x6vhhvuvqjdc6exh5tzsyzw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultd4ofzhqirrx","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3snfhb6y3aa","etag":"W/\"datetime''2021-04-22T07%3A54%3A15.4541464Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqipifuxusdjxqu36cl7oupej3st2is3s6wedvsdzxswpoc2fqlt77k4mj36qx6aj6/providers/Microsoft.RecoveryServices/vaults/clitest-vault3snfhb6y3aa","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulth2lqfalcza3","etag":"W/\"datetime''2021-02-24T03%3A44%3A45.3545338Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgr2vni5wieelvnlmaav6bphoqa77svqbi6wqxtly6mmvrga2zdpq7swbxhtwdbmhq4/providers/Microsoft.RecoveryServices/vaults/clitest-vaulth2lqfalcza3","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulti3q4xzkh6v5","etag":"W/\"datetime''2021-04-22T08%3A17%3A37.000849Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc4sjsrzt4/providers/Microsoft.RecoveryServices/vaults/clitest-vaulti3q4xzkh6v5","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultkckuhuzf5qt","etag":"W/\"datetime''2021-02-24T03%3A44%3A47.4665621Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrdbh7rzwz26bty5bjw6z3gclagbkvlbvk4hd6nto3s34uumdhdrhpba3cyx3yidu6/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkckuhuzf5qt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfci4uaaxviv","etag":"W/\"datetime''2021-04-22T08%3A00%3A17.4713857Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgre2lwihdrrfy5dirjrvhuzsnkpj2oj5gdcn7bgcqkxaazhepdv2xrvhmgwyw4idjr/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfci4uaaxviv","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultgkhcw7gvjnm","etag":"W/\"datetime''2021-05-06T20%3A53%3A53.2266757Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrj6hk5cmyeuhn7djv4v2kkiz5q3qil4xeygxnu4mkh46jkseyrsp7zgi5rfyryoz4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultgkhcw7gvjnm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnrrwo6le6j7","etag":"W/\"datetime''2021-04-16T06%3A50%3A44.9473491Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrr7e5yu4cto6fkllatxyyydgiwjjwfcm4l6cpgkgd4des3xmwtjr4lcucgztueqbv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnrrwo6le6j7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultwigajwrefb6","etag":"W/\"datetime''2021-04-16T09%3A03%3A44.6065255Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrtzybz26h2d2f54vpdsxetvaqh5xqlwqf7djuurxw2cshgkwrmytaplddsvwo7jql/providers/Microsoft.RecoveryServices/vaults/clitest-vaultwigajwrefb6","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultrte6ele2rnt","etag":"W/\"datetime''2021-04-20T02%3A37%3A32.150239Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsinwtlontxfjydkt3bx3ygxmbscqqq7ol3565odmurv6eh57qifoapnkbumg7fknb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultrte6ele2rnt","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultppjoekrhu4e","etag":"W/\"datetime''2021-05-13T19%3A47%3A55.3912898Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsjwks5ubsup2h7tp7yqs6xlckt6f6izusu5f5xeac7zggb4mbtilnwayaxkxjulgf/providers/Microsoft.RecoveryServices/vaults/clitest-vaultppjoekrhu4e","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultfj2m25l7vmz","etag":"W/\"datetime''2021-04-21T02%3A29%3A02.665275Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgslvw2f4bxm72wkmw2x2k4rplxzv3nprsrawlcesjxigidpygir6h5trew32o66mfg/providers/Microsoft.RecoveryServices/vaults/clitest-vaultfj2m25l7vmz","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault3t46uqfmvjk","etag":"W/\"datetime''2021-05-06T19%3A58%3A20.6323233Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgsoaub62eurnzdifwo7e77bgqrt7fivukaz4yf55nyihuusp22bxvvfaxbg7shr3vj/providers/Microsoft.RecoveryServices/vaults/clitest-vault3t46uqfmvjk","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulty7b3wxrlvid","etag":"W/\"datetime''2020-11-20T08%3A56%3A17.6468125Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtgjef77rrkyciukhkwgo7vw7fdvvzeb7jcos2hiv3avuwqvxdzr5itcmt7fiskvgf/providers/Microsoft.RecoveryServices/vaults/clitest-vaulty7b3wxrlvid","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnq2rj7lugpp","etag":"W/\"datetime''2021-02-24T03%3A44%3A45.4256025Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtiatra4fev6wyhaqqebw4g4i64hoi5ncmv5rg77ff3cqs7c7jm37mbixepek2oef3/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnq2rj7lugpp","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaulto4tpsiwpzxa","etag":"W/\"datetime''2021-05-10T10%3A16%3A04.1084617Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtkn6ito4cvb46nreqy7hfff2qhvvvkr44igtm6k6l2o4amhwhw6rgpzqeh3633gvv/providers/Microsoft.RecoveryServices/vaults/clitest-vaulto4tpsiwpzxa","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault22ugzkb5r32","etag":"W/\"datetime''2021-04-16T06%3A50%3A45.4898698Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtsw2ukakywa3q7wujjy5joyqwqaep4ylpsdrpo6ujad25ax4bnpsxg3tvpdvv7nec/providers/Microsoft.RecoveryServices/vaults/clitest-vault22ugzkb5r32","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultamycs2adsxm","etag":"W/\"datetime''2021-04-23T03%3A42%3A53.4641869Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.RecoveryServices/vaults/clitest-vaultamycs2adsxm","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultlqwppt573mw","etag":"W/\"datetime''2021-04-23T03%3A19%3A17.5029038Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgunjnme2ww5qbwyw4hms5xm4ctkhhugzmtgtphgos4ez6jadd6fltwagzyjrdzokcv/providers/Microsoft.RecoveryServices/vaults/clitest-vaultlqwppt573mw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnmbolbfj3qw","etag":"W/\"datetime''2021-04-16T06%3A50%3A44.8712762Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguwz3fl6ckl3ubtynwzsmm5w62w6e7c6dqsscad6nw4mgvehtnl7jsx3utkvoliwgc/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnmbolbfj3qw","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultqjsp6z2vs2g","etag":"W/\"datetime''2021-04-23T03%3A42%3A53.5692864Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv3m577d7ho/providers/Microsoft.RecoveryServices/vaults/clitest-vaultqjsp6z2vs2g","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultomkzlpcl3ju","etag":"W/\"datetime''2021-05-13T19%3A47%3A55.1500599Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvj4x3xwhmxz3pqp5r5wqn5qflymtkma55s3wxse2gdxohpvr3nbgzwvcstvc4ozrt/providers/Microsoft.RecoveryServices/vaults/clitest-vaultomkzlpcl3ju","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultubxs2tf7fa7","etag":"W/\"datetime''2021-04-19T02%3A46%3A57.4545594Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvjavixfqwz6cxvpkn6u54ajk3fa6jjz4ruxuohjeynusnabiadcmmropup73v5lqw/providers/Microsoft.RecoveryServices/vaults/clitest-vaultubxs2tf7fa7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultsuedfxc436s","etag":"W/\"datetime''2021-04-16T09%3A03%3A44.2611929Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvproscgkhupyyrpzzmwyxdhaqqym7fjyj52ps3anzusy3goveigck7enpd36av6rk/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsuedfxc436s","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault6hmnpzruvsg","etag":"W/\"datetime''2021-04-16T09%3A03%3A44.1460814Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvps3sf22mukyrzd7x6w4ajs5dk7vyinvdnffr2vzto7vsewldkaf4ytq3yflabwrc/providers/Microsoft.RecoveryServices/vaults/clitest-vault6hmnpzruvsg","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultj24sii3xnu7","etag":"W/\"datetime''2021-04-19T02%3A46%3A57.4845878Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvt3xx3e4uwhbuq3pmtkf72fl674usgxlhezwreh6vdf4jbsvnf4pwohlb7hyyj6qy/providers/Microsoft.RecoveryServices/vaults/clitest-vaultj24sii3xnu7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultytkeiw4qv3i","etag":"W/\"datetime''2021-04-22T07%3A54%3A14.8325553Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgw5dhiglvdolglnw3dit2ow2ixmwq445xetj43lmxa5ifd73nckm6c55lk7h7pccdh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultytkeiw4qv3i","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultdpir4zvghxs","etag":"W/\"datetime''2021-04-16T06%3A50%3A46.1354876Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwc7ts3azg6bdqihggw5qdd5ehoxtv7aeg2nhceusvpkck6k4rdp7iscgxfbzlj7c2/providers/Microsoft.RecoveryServices/vaults/clitest-vaultdpir4zvghxs","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultn3kyxin2ljd","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.5389022Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxp7uwuibs5/providers/Microsoft.RecoveryServices/vaults/clitest-vaultn3kyxin2ljd","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault4rni35bv7np","etag":"W/\"datetime''2020-12-18T04%3A38%3A15.8595053Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy2vkoxuqrkflvumtf2cs42vd4huiiv4pk4o4xmhpyce6ug23j46daynwtwkjn2gs5/providers/Microsoft.RecoveryServices/vaults/clitest-vault4rni35bv7np","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultzi3ty6xwj64","etag":"W/\"datetime''2021-05-13T10%3A04%3A42.6255835Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyk6rymen54chxfmrtb6kaau4viqckwvcnl4pzr6zdr2pagi3gnbeguemrtkevo376/providers/Microsoft.RecoveryServices/vaults/clitest-vaultzi3ty6xwj64","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultkxobma56w55","etag":"W/\"datetime''2021-05-06T19%3A46%3A16.0599336Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgys7jeahafoxuf7e47eh3gqs33cleoo74dhmh3h2gmv6qkmwoqkh3onsc35ovetc36/providers/Microsoft.RecoveryServices/vaults/clitest-vaultkxobma56w55","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultcntn5lu4qm7","etag":"W/\"datetime''2021-04-23T03%3A19%3A17.3447534Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgytlj3h6ek6u6zcw2vu43mmpfeoc36pfkyguzbfo6t7iewhdpqvw7k4fottksi772t/providers/Microsoft.RecoveryServices/vaults/clitest-vaultcntn5lu4qm7","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vault2cpp4w4w2ni","etag":"W/\"datetime''2021-04-22T07%3A54%3A15.837511Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyy65r2sz5fo634ynjpnltnzyu4sn5nfjo4lwn4lb6z4c6rxqn7jtocew3ah5dnpft/providers/Microsoft.RecoveryServices/vaults/clitest-vault2cpp4w4w2ni","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultnurwnxirxop","etag":"W/\"datetime''2021-04-23T07%3A13%3A19.4588266Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjznhcqaoh/providers/Microsoft.RecoveryServices/vaults/clitest-vaultnurwnxirxop","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultuhlswznr3i2","etag":"W/\"datetime''2020-10-23T16%3A31%3A56.5569141Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgztlr5u55tyzz2zje2tgl6tahkxxyrunwxdg7vkdludpwn5x3fd3z2ytjyc5lwc4vb/providers/Microsoft.RecoveryServices/vaults/clitest-vaultuhlswznr3i2","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"southeastasia","name":"clitest-vaultsn5dn6zaabo","etag":"W/\"datetime''2021-04-19T02%3A46%3A57.5676663Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgztyt5ogttz2mmnfaxyqccdipxxliejfhinf2ffgljnlhywaxxmzzis5hygy3y5yp4/providers/Microsoft.RecoveryServices/vaults/clitest-vaultsn5dn6zaabo","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}},{"location":"japaneast","name":"vault296","etag":"W/\"datetime''2020-08-05T05%3A33%3A57.7208147Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/t-yakou2/providers/Microsoft.RecoveryServices/vaults/vault296","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"RS0","tier":"Standard"}}]}' headers: cache-control: - no-cache content-length: - - '57229' + - '64527' content-type: - application/json; charset=utf-8 date: - - Mon, 11 Jan 2021 06:11:49 GMT + - Thu, 20 May 2021 05:40:44 GMT expires: - '-1' pragma: @@ -674,17 +655,10 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 - - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 - - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 - - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 - - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 - - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 - - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 - - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 - - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 - - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 - - 76828ebc-a84a-4e6e-98c7-d2f70e50d287 + - 2fd08c44-9e40-43da-bcb6-662a950c7d8f + - 2fd08c44-9e40-43da-bcb6-662a950c7d8f + - 2fd08c44-9e40-43da-bcb6-662a950c7d8f + - 2fd08c44-9e40-43da-bcb6-662a950c7d8f status: code: 200 message: OK @@ -702,8 +676,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -719,7 +693,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:11:50 GMT + - Thu, 20 May 2021 05:40:46 GMT expires: - '-1' pragma: @@ -735,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '149' x-powered-by: - ASP.NET status: @@ -757,8 +731,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: DELETE @@ -772,7 +746,7 @@ interactions: content-length: - '0' date: - - Mon, 11 Jan 2021 06:11:57 GMT + - Thu, 20 May 2021 05:40:51 GMT expires: - '-1' pragma: @@ -800,8 +774,8 @@ interactions: ParameterSetName: - --backup-management-type -v -g --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: GET @@ -817,7 +791,7 @@ interactions: content-type: - application/json date: - - Mon, 11 Jan 2021 06:12:00 GMT + - Thu, 20 May 2021 05:40:53 GMT expires: - '-1' pragma: @@ -833,7 +807,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -855,8 +829,8 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservices/0.4.0 Azure-SDK-For-Python AZURECLI/2.23.0 accept-language: - en-US method: DELETE @@ -870,7 +844,7 @@ interactions: content-length: - '0' date: - - Mon, 11 Jan 2021 06:12:09 GMT + - Thu, 20 May 2021 05:40:59 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_auto_protection.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_auto_protection.yaml index 20c827fd610..d2784edf746 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_auto_protection.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_auto_protection.yaml @@ -7,30 +7,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container register + - backup container list Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id + - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-hana-vm","name":"VMAppContainer;Compute;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-hana-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;DinosRGUR1;sdsadsad","name":"VMAppContainer;Compute;DinosRGUR1;sdsadsad","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sdsadsad","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoobanner10","name":"VMAppContainer;Compute;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoobanner10","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","name":"VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlbannervm4","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","name":"VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlinprogress2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;sqlvmgeeta","name":"VMAppContainer;Compute;gesahoo;sqlvmgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sqlvmgeeta","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlvmgeeta"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;dikextest","name":"VMAppContainer;Compute;sarath-rg;dikextest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dikextest","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/dikextest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;sarathPSTest001","name":"VMAppContainer;Compute;sarath-rg;sarathPSTest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sarathPSTest001","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shrja2008_group;shrja2008","name":"VMAppContainer;Compute;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shrja2008","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-man-pssd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-man-pssd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-unman-shdd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-unman-shdd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","name":"VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsadsa","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;sddsds","name":"VMAppContainer;Compute;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sddsds","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":9,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '10409' + - '1073' content-type: - application/json date: - - Mon, 18 Jan 2021 05:24:17 GMT + - Tue, 11 May 2021 06:49:11 GMT expires: - '-1' pragma: @@ -46,71 +46,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK -- request: - body: '{"properties": {"backupManagementType": "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 --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - 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: @@ -119,42 +60,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container register + - backup protection auto-enable-for-azurewl Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id + - -v -g -p --protectable-item-name --protectable-item-type --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":8}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1058' content-type: - application/json date: - - Mon, 18 Jan 2021 05:24:19 GMT + - Tue, 11 May 2021 06: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/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -162,8 +103,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -172,42 +113,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container register + - backup protection auto-enable-for-azurewl Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id + - -v -g -p --protectable-item-name --protectable-item-type --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":9,"subprotectableitemcount":9,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '796' content-type: - application/json date: - - Mon, 18 Jan 2021 05:24:20 GMT + - Tue, 11 May 2021 06: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/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -215,273 +156,67 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"backupManagementType": "AzureWorkload", "itemId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqlinstance;mssqlserver", + "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup", + "protectionIntentItemType": "RecoveryServiceVaultItem"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup container register + - backup protection auto-enable-for-azurewl Connection: - keep-alive + Content-Length: + - '541' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id + - -v -g -p --protectable-item-name --protectable-item-type --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/backupProtectionIntent/a2a505c4-9436-448d-a816-5954464a5034?api-version=2017-07-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/backupProtectionIntent/a2a505c4-9436-448d-a816-5954464a5034","name":"a2a505c4-9436-448d-a816-5954464a5034","type":"Microsoft.RecoveryServices/vaults/backupProtectionIntent","properties":{"protectionIntentItemType":"RecoveryServiceVaultItem","backupManagementType":"AzureWorkload","sourceResourceId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/Compute;bksql;sqlvm","itemId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/Compute;bksql;sqlvm/protectableItems/MSSQLSERVER","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","protectionState":"NotProtected"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1072' content-type: - application/json date: - - Mon, 18 Jan 2021 05:24:25 GMT + - Tue, 11 May 2021 06:49: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/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -490,12952 +225,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container register + - backup protection auto-disable-for-azurewl Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id + - -v -g --item-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 + method: DELETE + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/backupProtectionIntent/6f9a263c-84e6-47da-9d74-3fcd3c299d07?api-version=2017-07-01 response: body: - string: '{}' + string: '' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview cache-control: - no-cache - content-length: - - '2' - content-type: - - application/json date: - - Mon, 18 Jan 2021 05:24:27 GMT + - Tue, 11 May 2021 06: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/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:24:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:25:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '21' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '20' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:26:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '19' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '18' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '17' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '16' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '15' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '14' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '13' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '12' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '10' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '8' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '7' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '6' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '5' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '4' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '3' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '2' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '1' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '0' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:27:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '-1' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/0340040f-23cd-4fa2-96b1-ec9ff6de7408?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-18T05:25:25.2938226Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' - headers: - cache-control: - - no-cache - content-length: - - '1081' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05: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-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container list - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-18T05:25:25.2938226Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '4879' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05: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-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection auto-enable-for-azurewl - Connection: - - keep-alive - ParameterSetName: - - -v -g -p --protectable-item-name --protectable-item-type --server-name --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - 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=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' - headers: - cache-control: - - no-cache - content-length: - - '1076' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection auto-enable-for-azurewl - Connection: - - keep-alive - ParameterSetName: - - -v -g -p --protectable-item-name --protectable-item-type --server-name --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8895/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8895","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8896/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8896","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb","name":"sqldatabase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb","protectionState":"NotProtected"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '6073' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05: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-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - 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 --protectable-item-name --protectable-item-type --server-name --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/backupProtectionIntent/7ec9429d-bea2-4573-9562-799406b69e6e?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/7ec9429d-bea2-4573-9562-799406b69e6e","name":"7ec9429d-bea2-4573-9562-799406b69e6e","type":"Microsoft.RecoveryServices/vaults/backupProtectionIntent","properties":{"protectionIntentItemType":"RecoveryServiceVaultItem","backupManagementType":"AzureWorkload","sourceResourceId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/Compute;pstestwlRG1bca8;pstestwlvm1bca8","itemId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/Compute;pstestwlRG1bca8;pstestwlvm1bca8/protectableItems/MSSQLSERVER","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","protectionState":"NotProtected"}}' - headers: - cache-control: - - no-cache - content-length: - - '1184' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05: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-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 auto-disable-for-azurewl - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -v -g --item-name - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/backupProtectionIntent/94aa6a7e-cd90-4c5d-a797-cf8b25668846?api-version=2017-07-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - date: - - Mon, 18 Jan 2021 05:38:19 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 -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Mon, 18 Jan 2021 05:38:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?fabricName=Azure?api-version=2020-10-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:38:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:39:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/32171149-913c-4d6d-ab22-d40c3d014f5b?api-version=2020-10-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 05:40:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + 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 list - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '3719' - content-type: - - application/json - date: - - Mon, 18 Jan 2021 05:40:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK 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 index 51f82a5019d..9020bd3aa2f 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_container.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_container.yaml @@ -7,8697 +7,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-hana-vm","name":"VMAppContainer;Compute;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-hana-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","name":"VMAppContainer;Compute;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmnpb2n","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.Compute/virtualMachines/clitest-vmnpb2n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"VMAppContainer;Compute;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmxj2c5","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest-vm757zh","name":"VMAppContainer;Compute;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest-vm757zh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm757zh","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6/providers/Microsoft.Compute/virtualMachines/clitest-vm757zh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw;clitest-vmxhsp4","name":"VMAppContainer;Compute;clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw;clitest-vmxhsp4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmxhsp4","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw/providers/Microsoft.Compute/virtualMachines/clitest-vmxhsp4"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75","name":"VMAppContainer;Compute;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmzyo75","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.Compute/virtualMachines/clitest-vmzyo75"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h;clitest-vm7oe3h","name":"VMAppContainer;Compute;clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h;clitest-vm7oe3h","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm7oe3h","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h/providers/Microsoft.Compute/virtualMachines/clitest-vm7oe3h"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw;clitest-vm7pkgm","name":"VMAppContainer;Compute;clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw;clitest-vm7pkgm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm7pkgm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw/providers/Microsoft.Compute/virtualMachines/clitest-vm7pkgm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb;clitest-vmpu4sw","name":"VMAppContainer;Compute;clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb;clitest-vmpu4sw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmpu4sw","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb/providers/Microsoft.Compute/virtualMachines/clitest-vmpu4sw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"VMAppContainer;Compute;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmjunig","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"VMAppContainer;Compute;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmvsxff","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"VMAppContainer;Compute;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmsruqi","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;DinosRGUR1;sdsadsad","name":"VMAppContainer;Compute;DinosRGUR1;sdsadsad","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sdsadsad","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoobanner10","name":"VMAppContainer;Compute;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoobanner10","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","name":"VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlbannervm4","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","name":"VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlinprogress2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;sqlvmgeeta","name":"VMAppContainer;Compute;gesahoo;sqlvmgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sqlvmgeeta","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlvmgeeta"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;dikextest","name":"VMAppContainer;Compute;sarath-rg;dikextest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dikextest","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/dikextest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;sarathPSTest001","name":"VMAppContainer;Compute;sarath-rg;sarathPSTest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sarathPSTest001","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shrja2008_group;shrja2008","name":"VMAppContainer;Compute;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shrja2008","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-man-pssd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-man-pssd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-unman-shdd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-unman-shdd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","name":"VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsadsa","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;sddsds","name":"VMAppContainer;Compute;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sddsds","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '20177' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": - "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/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 --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - 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 --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:00:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:01:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '21' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '20' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '19' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '18' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '17' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '16' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '15' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '14' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:02:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '13' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '12' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '10' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '8' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '7' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '6' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '5' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '4' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '3' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '2' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '1' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '0' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22793988-15de-4772-b7b8-32c495744905?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:03:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '-1' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22793988-15de-4772-b7b8-32c495744905?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' - headers: - cache-control: - - no-cache - content-length: - - '1081' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:08:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container list - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '4879' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container show - Connection: - - keep-alive - ParameterSetName: - - -n -v -g --backup-management-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container show - Connection: - - keep-alive - ParameterSetName: - - -n -v -g --backup-management-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container list - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '4879' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container re-register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type -y --container-name - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '4879' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:08:45 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - 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 --backup-management-type --workload-type -y --container-name - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:08:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container re-register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type -y --container-name - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:08:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container re-register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type -y --container-name - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:08:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container re-register + - backup container list Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type --workload-type -y --container-name + - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1073' content-type: - application/json date: - - Sat, 16 Jan 2021 17:08:49 GMT + - Fri, 30 Apr 2021 06:31:13 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8706,51 +60,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container show Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type --workload-type -y --container-name + - -n -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1061' content-type: - application/json date: - - Sat, 16 Jan 2021 17:08:51 GMT + - Fri, 30 Apr 2021 06:31:15 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8759,51 +113,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container show Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type --workload-type -y --container-name + - -n -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1061' content-type: - application/json date: - - Sat, 16 Jan 2021 17:08:52 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8812,51 +166,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container re-register + - backup container list Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type --workload-type -y --container-name + - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1073' content-type: - application/json date: - - Sat, 16 Jan 2021 17:08:53 GMT + - Fri, 30 Apr 2021 06:31:18 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' + - '149' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -8871,47 +225,49 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1073' content-type: - application/json date: - - Sat, 16 Jan 2021 17:08:55 GMT + - Fri, 30 Apr 2021 06:31:19 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' + - '148' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"properties": {"backupManagementType": "AzureWorkload", "containerType": + "VMAppContainer", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm", + "workloadType": "SQLDataBase", "operationType": "Reregister"}}' headers: Accept: - application/json @@ -8921,21 +277,25 @@ interactions: - backup container re-register Connection: - keep-alive + Content-Length: + - '300' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8943,11 +303,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:08:56 GMT + - Fri, 30 Apr 2021 06:31:21 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -8956,8 +316,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: @@ -8977,18 +337,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -8996,11 +356,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:08:57 GMT + - Fri, 30 Apr 2021 06:31:23 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9010,7 +370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' + - '149' x-powered-by: - ASP.NET status: @@ -9030,18 +390,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9049,11 +409,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:08:58 GMT + - Fri, 30 Apr 2021 06:31:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9063,7 +423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' + - '148' x-powered-by: - ASP.NET status: @@ -9083,18 +443,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9102,11 +462,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:00 GMT + - Fri, 30 Apr 2021 06:31:26 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9116,7 +476,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' + - '147' x-powered-by: - ASP.NET status: @@ -9136,18 +496,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9155,11 +515,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:01 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9169,7 +529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' + - '146' x-powered-by: - ASP.NET status: @@ -9189,18 +549,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9208,11 +568,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:02 GMT + - Fri, 30 Apr 2021 06:31:29 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9222,7 +582,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' + - '145' x-powered-by: - ASP.NET status: @@ -9242,18 +602,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9261,11 +621,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:04 GMT + - Fri, 30 Apr 2021 06:31:30 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9275,7 +635,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' + - '144' x-powered-by: - ASP.NET status: @@ -9295,18 +655,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9314,11 +674,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:05 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9328,7 +688,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' + - '143' x-powered-by: - ASP.NET status: @@ -9348,18 +708,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9367,11 +727,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:06 GMT + - Fri, 30 Apr 2021 06:31:33 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9381,7 +741,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' + - '142' x-powered-by: - ASP.NET status: @@ -9401,18 +761,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9420,11 +780,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:07 GMT + - Fri, 30 Apr 2021 06:31:34 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9434,7 +794,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' + - '141' x-powered-by: - ASP.NET status: @@ -9454,18 +814,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9473,11 +833,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:08 GMT + - Fri, 30 Apr 2021 06:31:36 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9487,7 +847,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' + - '140' x-powered-by: - ASP.NET status: @@ -9507,18 +867,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9526,11 +886,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:09 GMT + - Fri, 30 Apr 2021 06:31:37 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9540,7 +900,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' + - '139' x-powered-by: - ASP.NET status: @@ -9560,18 +920,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9579,11 +939,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:12 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9593,7 +953,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' + - '138' x-powered-by: - ASP.NET status: @@ -9613,18 +973,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9632,11 +992,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:13 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9646,7 +1006,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' + - '137' x-powered-by: - ASP.NET status: @@ -9666,18 +1026,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9685,11 +1045,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:14 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9699,7 +1059,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' + - '136' x-powered-by: - ASP.NET status: @@ -9719,18 +1079,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9738,11 +1098,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:15 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9752,7 +1112,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' + - '135' x-powered-by: - ASP.NET status: @@ -9772,18 +1132,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9791,11 +1151,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:16 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9805,7 +1165,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' + - '134' x-powered-by: - ASP.NET status: @@ -9825,18 +1185,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9844,11 +1204,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:18 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9858,7 +1218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' + - '133' x-powered-by: - ASP.NET status: @@ -9878,18 +1238,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9897,11 +1257,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:19 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9911,7 +1271,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' + - '132' x-powered-by: - ASP.NET status: @@ -9931,18 +1291,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -9950,11 +1310,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:20 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -9964,7 +1324,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' + - '131' x-powered-by: - ASP.NET status: @@ -9984,18 +1344,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10003,11 +1363,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:22 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10017,7 +1377,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' + - '130' x-powered-by: - ASP.NET status: @@ -10037,18 +1397,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10056,11 +1416,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:23 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10070,7 +1430,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' + - '129' x-powered-by: - ASP.NET status: @@ -10090,18 +1450,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10109,11 +1469,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:24 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10123,7 +1483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' + - '128' x-powered-by: - ASP.NET status: @@ -10143,18 +1503,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10162,11 +1522,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:26 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10176,7 +1536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' + - '127' x-powered-by: - ASP.NET status: @@ -10196,18 +1556,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10215,11 +1575,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:27 GMT + - Fri, 30 Apr 2021 06:31:55 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10229,7 +1589,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' + - '126' x-powered-by: - ASP.NET status: @@ -10249,18 +1609,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10268,11 +1628,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:28 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10282,7 +1642,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' + - '125' x-powered-by: - ASP.NET status: @@ -10302,18 +1662,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10321,11 +1681,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:30 GMT + - Fri, 30 Apr 2021 06:31: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10335,7 +1695,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '124' x-powered-by: - ASP.NET status: @@ -10355,18 +1715,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10374,11 +1734,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:31 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10388,7 +1748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' + - '123' x-powered-by: - ASP.NET status: @@ -10408,18 +1768,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10427,11 +1787,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:32 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10441,7 +1801,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' + - '122' x-powered-by: - ASP.NET status: @@ -10461,18 +1821,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10480,11 +1840,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:33 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10494,7 +1854,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '21' + - '121' x-powered-by: - ASP.NET status: @@ -10514,18 +1874,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10533,11 +1893,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:35 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10547,7 +1907,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '20' + - '120' x-powered-by: - ASP.NET status: @@ -10567,18 +1927,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10586,11 +1946,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:36 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10600,7 +1960,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '19' + - '119' x-powered-by: - ASP.NET status: @@ -10620,18 +1980,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10639,11 +1999,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:37 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10653,7 +2013,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '18' + - '118' x-powered-by: - ASP.NET status: @@ -10673,18 +2033,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10692,11 +2052,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:38 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10706,7 +2066,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '17' + - '117' x-powered-by: - ASP.NET status: @@ -10726,18 +2086,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10745,11 +2105,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:39 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10759,7 +2119,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '16' + - '116' x-powered-by: - ASP.NET status: @@ -10779,18 +2139,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10798,11 +2158,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:40 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10812,7 +2172,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '15' + - '115' x-powered-by: - ASP.NET status: @@ -10832,18 +2192,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10851,11 +2211,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:42 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10865,7 +2225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '14' + - '114' x-powered-by: - ASP.NET status: @@ -10885,18 +2245,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10904,11 +2264,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:43 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10918,7 +2278,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '13' + - '113' x-powered-by: - ASP.NET status: @@ -10938,18 +2298,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -10957,11 +2317,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:45 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -10971,7 +2331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '12' + - '112' x-powered-by: - ASP.NET status: @@ -10991,18 +2351,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11010,11 +2370,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:46 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11024,7 +2384,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11' + - '111' x-powered-by: - ASP.NET status: @@ -11044,18 +2404,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11063,11 +2423,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:47 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11077,7 +2437,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '10' + - '110' x-powered-by: - ASP.NET status: @@ -11097,18 +2457,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11116,11 +2476,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:48 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11130,7 +2490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' + - '109' x-powered-by: - ASP.NET status: @@ -11150,18 +2510,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11169,11 +2529,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:49 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11183,7 +2543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '8' + - '108' x-powered-by: - ASP.NET status: @@ -11203,18 +2563,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11222,11 +2582,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:50 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11236,7 +2596,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '7' + - '107' x-powered-by: - ASP.NET status: @@ -11256,18 +2616,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11275,11 +2635,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:52 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11289,7 +2649,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '6' + - '106' x-powered-by: - ASP.NET status: @@ -11309,18 +2669,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11328,11 +2688,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:53 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11342,7 +2702,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '5' + - '105' x-powered-by: - ASP.NET status: @@ -11362,18 +2722,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11381,11 +2741,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:55 GMT + - Fri, 30 Apr 2021 06: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/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11395,7 +2755,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4' + - '104' x-powered-by: - ASP.NET status: @@ -11415,18 +2775,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11434,11 +2794,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:56 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11448,7 +2808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '3' + - '103' x-powered-by: - ASP.NET status: @@ -11468,18 +2828,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11487,11 +2847,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:57 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11501,7 +2861,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '2' + - '102' x-powered-by: - ASP.NET status: @@ -11521,18 +2881,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11540,11 +2900,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:09:59 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11554,7 +2914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '1' + - '101' x-powered-by: - ASP.NET status: @@ -11574,18 +2934,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11593,11 +2953,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:10:00 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11607,7 +2967,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '0' + - '100' x-powered-by: - ASP.NET status: @@ -11627,18 +2987,18 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11646,11 +3006,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:10:01 GMT + - Fri, 30 Apr 2021 06:32: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/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11660,7 +3020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '-1' + - '99' x-powered-by: - ASP.NET status: @@ -11680,45 +3040,45 @@ interactions: ParameterSetName: - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/ddbcaafc-e779-4011-bd06-7e8d73513915?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '1081' + - '2' content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:27 GMT + - Fri, 30 Apr 2021 06:32:46 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '98' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -11727,67 +3087,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container list + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:01:15.2308492Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{}' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '4879' + - '2' content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:28 GMT + - Fri, 30 Apr 2021 06:32:47 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '97' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -11796,44 +3140,46 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: - string: '' + string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '0' + - '2' + content-type: + - application/json date: - - Sat, 16 Jan 2021 17:15:28 GMT + - Fri, 30 Apr 2021 06:32:49 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?fabricName=Azure?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' x-powered-by: - ASP.NET status: @@ -11847,24 +3193,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11872,11 +3218,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:29 GMT + - Fri, 30 Apr 2021 06:32: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11886,7 +3232,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '95' x-powered-by: - ASP.NET status: @@ -11900,24 +3246,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11925,11 +3271,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:31 GMT + - Fri, 30 Apr 2021 06:32: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11939,7 +3285,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '94' x-powered-by: - ASP.NET status: @@ -11953,24 +3299,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -11978,11 +3324,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:32 GMT + - Fri, 30 Apr 2021 06:32: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -11992,7 +3338,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '93' x-powered-by: - ASP.NET status: @@ -12006,24 +3352,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12031,11 +3377,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:33 GMT + - Fri, 30 Apr 2021 06:32: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12045,7 +3391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '92' x-powered-by: - ASP.NET status: @@ -12059,24 +3405,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12084,11 +3430,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:35 GMT + - Fri, 30 Apr 2021 06:32: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12098,7 +3444,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '91' x-powered-by: - ASP.NET status: @@ -12112,24 +3458,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12137,11 +3483,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:36 GMT + - Fri, 30 Apr 2021 06:32: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12151,7 +3497,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '90' x-powered-by: - ASP.NET status: @@ -12165,24 +3511,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12190,11 +3536,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:38 GMT + - Fri, 30 Apr 2021 06:32: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12204,7 +3550,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '89' x-powered-by: - ASP.NET status: @@ -12218,24 +3564,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12243,11 +3589,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:39 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12257,7 +3603,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '88' x-powered-by: - ASP.NET status: @@ -12271,24 +3617,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12296,11 +3642,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:40 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12310,7 +3656,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '87' x-powered-by: - ASP.NET status: @@ -12324,24 +3670,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12349,11 +3695,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:41 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12363,7 +3709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '86' x-powered-by: - ASP.NET status: @@ -12377,24 +3723,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12402,11 +3748,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:43 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12416,7 +3762,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '85' x-powered-by: - ASP.NET status: @@ -12430,24 +3776,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12455,11 +3801,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:44 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12469,7 +3815,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '84' x-powered-by: - ASP.NET status: @@ -12483,24 +3829,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12508,11 +3854,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:45 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12522,7 +3868,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '83' x-powered-by: - ASP.NET status: @@ -12536,24 +3882,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12561,11 +3907,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:46 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12575,7 +3921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '82' x-powered-by: - ASP.NET status: @@ -12589,24 +3935,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12614,11 +3960,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:47 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12628,7 +3974,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '81' x-powered-by: - ASP.NET status: @@ -12642,24 +3988,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12667,11 +4013,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:49 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12681,7 +4027,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '80' x-powered-by: - ASP.NET status: @@ -12695,24 +4041,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12720,11 +4066,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:50 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12734,7 +4080,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '79' x-powered-by: - ASP.NET status: @@ -12748,24 +4094,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12773,11 +4119,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:51 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12787,7 +4133,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '78' x-powered-by: - ASP.NET status: @@ -12801,24 +4147,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12826,11 +4172,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:53 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12840,7 +4186,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '77' x-powered-by: - ASP.NET status: @@ -12854,24 +4200,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12879,11 +4225,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:54 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12893,7 +4239,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '76' x-powered-by: - ASP.NET status: @@ -12907,24 +4253,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12932,11 +4278,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:55 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12946,7 +4292,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '75' x-powered-by: - ASP.NET status: @@ -12960,24 +4306,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -12985,11 +4331,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:56 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -12999,7 +4345,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '74' x-powered-by: - ASP.NET status: @@ -13013,24 +4359,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13038,11 +4384,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:57 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13052,7 +4398,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '73' x-powered-by: - ASP.NET status: @@ -13066,24 +4412,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13091,11 +4437,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:15:58 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13105,7 +4451,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '72' x-powered-by: - ASP.NET status: @@ -13119,24 +4465,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13144,11 +4490,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:01 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13158,7 +4504,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '71' x-powered-by: - ASP.NET status: @@ -13172,24 +4518,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13197,11 +4543,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:02 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13211,7 +4557,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '70' x-powered-by: - ASP.NET status: @@ -13225,24 +4571,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13250,11 +4596,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:03 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13264,7 +4610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '69' x-powered-by: - ASP.NET status: @@ -13278,24 +4624,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13303,11 +4649,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:04 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13317,7 +4663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '68' x-powered-by: - ASP.NET status: @@ -13331,24 +4677,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13356,11 +4702,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:05 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13370,7 +4716,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '67' x-powered-by: - ASP.NET status: @@ -13384,24 +4730,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13409,11 +4755,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:06 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13423,7 +4769,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '66' x-powered-by: - ASP.NET status: @@ -13437,24 +4783,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13462,11 +4808,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:07 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13476,7 +4822,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' + - '65' x-powered-by: - ASP.NET status: @@ -13490,24 +4836,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13515,11 +4861,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:09 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13529,7 +4875,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' + - '64' x-powered-by: - ASP.NET status: @@ -13543,24 +4889,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13568,11 +4914,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:11 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13582,7 +4928,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' + - '63' x-powered-by: - ASP.NET status: @@ -13596,24 +4942,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13621,11 +4967,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:12 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13635,7 +4981,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' + - '62' x-powered-by: - ASP.NET status: @@ -13649,24 +4995,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13674,11 +5020,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:13 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13688,7 +5034,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' + - '61' x-powered-by: - ASP.NET status: @@ -13702,24 +5048,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13727,11 +5073,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:15 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13741,7 +5087,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' + - '60' x-powered-by: - ASP.NET status: @@ -13755,24 +5101,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13780,11 +5126,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:16 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13794,7 +5140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' + - '59' x-powered-by: - ASP.NET status: @@ -13808,24 +5154,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13833,11 +5179,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:17 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13847,7 +5193,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' + - '58' x-powered-by: - ASP.NET status: @@ -13861,24 +5207,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13886,11 +5232,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:18 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13900,7 +5246,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' + - '57' x-powered-by: - ASP.NET status: @@ -13914,24 +5260,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13939,11 +5285,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:20 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -13953,7 +5299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' + - '56' x-powered-by: - ASP.NET status: @@ -13967,24 +5313,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -13992,11 +5338,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:21 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14006,7 +5352,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' + - '55' x-powered-by: - ASP.NET status: @@ -14020,24 +5366,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14045,11 +5391,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:22 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14059,7 +5405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' + - '54' x-powered-by: - ASP.NET status: @@ -14073,24 +5419,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14098,11 +5444,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:23 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14112,7 +5458,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' + - '53' x-powered-by: - ASP.NET status: @@ -14126,24 +5472,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14151,11 +5497,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:24 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14165,7 +5511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '52' x-powered-by: - ASP.NET status: @@ -14179,24 +5525,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14204,11 +5550,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:25 GMT + - Fri, 30 Apr 2021 06:33: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14218,7 +5564,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '51' x-powered-by: - ASP.NET status: @@ -14232,24 +5578,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14257,11 +5603,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:27 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14271,7 +5617,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '50' x-powered-by: - ASP.NET status: @@ -14285,24 +5631,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14310,11 +5656,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:28 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14324,7 +5670,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '49' x-powered-by: - ASP.NET status: @@ -14338,24 +5684,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14363,11 +5709,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:30 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14377,7 +5723,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '48' x-powered-by: - ASP.NET status: @@ -14391,24 +5737,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14416,11 +5762,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:31 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14430,7 +5776,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '47' x-powered-by: - ASP.NET status: @@ -14444,24 +5790,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14469,11 +5815,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:32 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14483,7 +5829,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '46' x-powered-by: - ASP.NET status: @@ -14497,24 +5843,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14522,11 +5868,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:33 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14536,7 +5882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '45' x-powered-by: - ASP.NET status: @@ -14550,24 +5896,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14575,11 +5921,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:35 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14589,7 +5935,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '44' x-powered-by: - ASP.NET status: @@ -14603,24 +5949,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14628,11 +5974,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:36 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14642,7 +5988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '43' x-powered-by: - ASP.NET status: @@ -14656,24 +6002,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14681,11 +6027,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:37 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14695,7 +6041,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '42' x-powered-by: - ASP.NET status: @@ -14709,24 +6055,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14734,11 +6080,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:38 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14748,7 +6094,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '41' x-powered-by: - ASP.NET status: @@ -14762,24 +6108,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14787,11 +6133,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:40 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14801,7 +6147,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '40' x-powered-by: - ASP.NET status: @@ -14815,24 +6161,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14840,11 +6186,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:41 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14854,7 +6200,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '39' x-powered-by: - ASP.NET status: @@ -14868,24 +6214,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14893,11 +6239,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:42 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14907,7 +6253,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '38' x-powered-by: - ASP.NET status: @@ -14921,24 +6267,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14946,11 +6292,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:43 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -14960,7 +6306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '37' x-powered-by: - ASP.NET status: @@ -14974,24 +6320,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -14999,11 +6345,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:44 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15013,7 +6359,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '36' x-powered-by: - ASP.NET status: @@ -15027,24 +6373,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15052,11 +6398,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:46 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15066,7 +6412,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '35' x-powered-by: - ASP.NET status: @@ -15080,24 +6426,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15105,11 +6451,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:47 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15119,7 +6465,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '34' x-powered-by: - ASP.NET status: @@ -15133,24 +6479,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15158,11 +6504,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:48 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15172,7 +6518,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '33' x-powered-by: - ASP.NET status: @@ -15186,24 +6532,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15211,11 +6557,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:50 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15225,7 +6571,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' + - '32' x-powered-by: - ASP.NET status: @@ -15239,24 +6585,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15264,11 +6610,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:51 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15278,7 +6624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' + - '31' x-powered-by: - ASP.NET status: @@ -15292,24 +6638,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15317,11 +6663,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:52 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15331,7 +6677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' + - '30' x-powered-by: - ASP.NET status: @@ -15345,24 +6691,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15370,11 +6716,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:54 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15384,7 +6730,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' + - '29' x-powered-by: - ASP.NET status: @@ -15398,24 +6744,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15423,11 +6769,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:55 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15437,7 +6783,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' + - '28' x-powered-by: - ASP.NET status: @@ -15451,24 +6797,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15476,11 +6822,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:56 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15490,7 +6836,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' + - '27' x-powered-by: - ASP.NET status: @@ -15504,24 +6850,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15529,11 +6875,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:57 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15543,7 +6889,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' + - '26' x-powered-by: - ASP.NET status: @@ -15557,24 +6903,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15582,11 +6928,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:16:58 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15596,7 +6942,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' + - '25' x-powered-by: - ASP.NET status: @@ -15610,24 +6956,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15635,11 +6981,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:00 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15649,7 +6995,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' + - '24' x-powered-by: - ASP.NET status: @@ -15663,24 +7009,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15688,11 +7034,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:01 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15702,7 +7048,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' + - '23' x-powered-by: - ASP.NET status: @@ -15716,24 +7062,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15741,11 +7087,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:02 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15755,7 +7101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' + - '22' x-powered-by: - ASP.NET status: @@ -15769,24 +7115,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15794,11 +7140,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:04 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15808,7 +7154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' + - '21' x-powered-by: - ASP.NET status: @@ -15822,24 +7168,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15847,11 +7193,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:05 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15861,7 +7207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' + - '20' x-powered-by: - ASP.NET status: @@ -15875,24 +7221,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15900,11 +7246,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:06 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15914,7 +7260,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' + - '19' x-powered-by: - ASP.NET status: @@ -15928,24 +7274,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -15953,11 +7299,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:07 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -15967,7 +7313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' + - '18' x-powered-by: - ASP.NET status: @@ -15981,24 +7327,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16006,11 +7352,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:09 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16020,7 +7366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' + - '17' x-powered-by: - ASP.NET status: @@ -16034,24 +7380,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16059,11 +7405,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:10 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16073,7 +7419,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' + - '16' x-powered-by: - ASP.NET status: @@ -16087,24 +7433,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16112,11 +7458,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:11 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16126,7 +7472,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' + - '15' x-powered-by: - ASP.NET status: @@ -16140,24 +7486,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16165,11 +7511,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:13 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16179,7 +7525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' + - '14' x-powered-by: - ASP.NET status: @@ -16193,24 +7539,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16218,11 +7564,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:15 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16232,7 +7578,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' + - '13' x-powered-by: - ASP.NET status: @@ -16246,24 +7592,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16271,11 +7617,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:16 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16285,7 +7631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' + - '12' x-powered-by: - ASP.NET status: @@ -16299,24 +7645,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16324,11 +7670,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:17 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16338,7 +7684,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' + - '11' x-powered-by: - ASP.NET status: @@ -16352,24 +7698,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16377,11 +7723,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:19 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16391,7 +7737,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' + - '10' x-powered-by: - ASP.NET status: @@ -16405,24 +7751,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16430,11 +7776,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:20 GMT + - Fri, 30 Apr 2021 06:34: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16444,7 +7790,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' + - '9' x-powered-by: - ASP.NET status: @@ -16458,24 +7804,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16483,11 +7829,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:21 GMT + - Fri, 30 Apr 2021 06:35: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16497,7 +7843,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' + - '8' x-powered-by: - ASP.NET status: @@ -16511,24 +7857,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16536,11 +7882,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:22 GMT + - Fri, 30 Apr 2021 06:35: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16550,7 +7896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' + - '7' x-powered-by: - ASP.NET status: @@ -16564,24 +7910,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16589,11 +7935,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:24 GMT + - Fri, 30 Apr 2021 06:35: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16603,7 +7949,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' + - '6' x-powered-by: - ASP.NET status: @@ -16617,24 +7963,24 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: string: '{}' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2019-05-13-preview + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationsStatus/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2019-05-13-preview cache-control: - no-cache content-length: @@ -16642,11 +7988,11 @@ interactions: content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:25 GMT + - Fri, 30 Apr 2021 06:35: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/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 pragma: - no-cache server: @@ -16656,7 +8002,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' + - '5' x-powered-by: - ASP.NET status: @@ -16670,43 +8016,51 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container unregister + - backup container re-register Connection: - keep-alive ParameterSetName: - - -v -g -c -y + - -v -g --backup-management-type --workload-type -y --container-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/22e0d9bb-e05e-4309-a08e-70cfcb5ed2c4?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/operationResults/f11c9146-d68a-4534-98f3-0e9792a2fd49?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache + content-length: + - '983' content-type: - - application/json; charset=utf-8 + - application/json date: - - Sat, 16 Jan 2021 17:17:26 GMT + - Fri, 30 Apr 2021 06:35:06 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' + - '4' x-powered-by: - ASP.NET status: - code: 204 - message: No Content + code: 200 + message: OK - request: body: null headers: @@ -16721,40 +8075,24 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '3719' + - '1073' content-type: - application/json date: - - Sat, 16 Jan 2021 17:17:27 GMT + - Fri, 30 Apr 2021 06:35:08 GMT expires: - '-1' pragma: @@ -16770,7 +8108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '147' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml index 6d89f8f93fc..5048391497e 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_item.yaml @@ -13,54 +13,24 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;pstestvm","name":"VMAppContainer;Compute;sarath-rg;pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/pstestvm","lastUpdatedTime":"2019-10-30T12:37:05.4211371Z","extendedInfo":{"hostServerName":"pstestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","lastUpdatedTime":"2020-11-18T08:07:45.5099006Z","extendedInfo":{"hostServerName":"sarath-sqltestv","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarath-sqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathsqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarathsqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathsqltestvm","lastUpdatedTime":"2020-05-07T06:32:24.7564937Z","extendedInfo":{"hostServerName":"sarathsqltestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathsqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;testsqlvm","name":"VMAppContainer;Compute;sarath-rg;testsqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/testsqlvm","lastUpdatedTime":"2019-11-22T10:04:21.462885Z","extendedInfo":{"hostServerName":"testsqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"testsqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","lastUpdatedTime":"2019-11-22T09:44:17.4760592Z","extendedInfo":{"inquiryInfo":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No - SQL instances found on this machine.","recommendations":["Please install a - supported version of SQL and try again later."]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No - SQL instances found on this machine.","recommendations":["Please install a - supported version of SQL and try again later."]},"additionalDetail":"UserErrorNoSQlInstancesOnMachine"}}]}},"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;testrg;pstestvm1","name":"VMAppContainer;Compute;testrg;pstestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Compute/virtualMachines/pstestvm1","lastUpdatedTime":"2019-11-04T06:51:45.8473207Z","extendedInfo":{"hostServerName":"pstestvm1","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":8,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '10681' + - '1073' content-type: - application/json date: - - Tue, 12 Jan 2021 10:24:54 GMT + - Mon, 10 May 2021 08:00:19 GMT expires: - '-1' pragma: @@ -96,28 +66,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;pstestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;testrg;pstestvm1/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm1","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":8,"subprotectableitemcount":8,"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/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqldatabase;mssqlserver;msdb_restored_5_10_2021_1527","name":"sqldatabase;mssqlserver;msdb_restored_5_10_2021_1527","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb_restored_5_10_2021_1527","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqldatabase;mssqlserver;sqltest4","name":"sqldatabase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"sqltest4","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '12895' + - '2336' content-type: - application/json date: - - Tue, 12 Jan 2021 10:24:55 GMT + - Mon, 10 May 2021 08:00:23 GMT expires: - '-1' pragma: @@ -153,24 +119,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-07-12T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-07-12T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":2}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":6}}' headers: cache-control: - no-cache content-length: - - '1066' + - '1058' content-type: - application/json date: - - Tue, 12 Jan 2021 10:24:55 GMT + - Mon, 10 May 2021 08:00:25 GMT expires: - '-1' pragma: @@ -194,7 +160,7 @@ interactions: message: OK - request: body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": - "SQLDataBase", "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup", + "SQLDataBase", "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup", "protectedItemType": "AzureVmWorkloadSQLDatabase"}}' headers: Accept: @@ -206,34 +172,34 @@ interactions: Connection: - keep-alive Content-Length: - - '319' + - '311' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest4?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationsStatus/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectedItems/sqldatabase;mssqlserver;sqltest4/operationsStatus/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 12 Jan 2021 10:24:57 GMT + - Mon, 10 May 2021 08:00:28 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationResults/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectedItems/sqldatabase;mssqlserver;sqltest4/operationResults/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -241,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -261,15 +227,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -278,7 +244,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:24:58 GMT + - Mon, 10 May 2021 08:00:30 GMT expires: - '-1' pragma: @@ -314,15 +280,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -331,7 +297,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:24:59 GMT + - Mon, 10 May 2021 08:00:31 GMT expires: - '-1' pragma: @@ -367,15 +333,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -384,7 +350,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:00 GMT + - Mon, 10 May 2021 08:00:33 GMT expires: - '-1' pragma: @@ -420,15 +386,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -437,7 +403,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:02 GMT + - Mon, 10 May 2021 08:00:34 GMT expires: - '-1' pragma: @@ -473,15 +439,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -490,7 +456,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:04 GMT + - Mon, 10 May 2021 08:00:36 GMT expires: - '-1' pragma: @@ -526,15 +492,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -543,7 +509,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:05 GMT + - Mon, 10 May 2021 08:00:37 GMT expires: - '-1' pragma: @@ -579,15 +545,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -596,7 +562,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:06 GMT + - Mon, 10 May 2021 08:00:38 GMT expires: - '-1' pragma: @@ -632,15 +598,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -649,7 +615,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:07 GMT + - Mon, 10 May 2021 08:00:40 GMT expires: - '-1' pragma: @@ -685,15 +651,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -702,7 +668,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:08 GMT + - Mon, 10 May 2021 08:00:41 GMT expires: - '-1' pragma: @@ -738,15 +704,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -755,7 +721,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:09 GMT + - Mon, 10 May 2021 08:00:43 GMT expires: - '-1' pragma: @@ -791,15 +757,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -808,7 +774,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:11 GMT + - Mon, 10 May 2021 08:00:44 GMT expires: - '-1' pragma: @@ -844,15 +810,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -861,7 +827,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:12 GMT + - Mon, 10 May 2021 08:00:45 GMT expires: - '-1' pragma: @@ -897,15 +863,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -914,7 +880,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:13 GMT + - Mon, 10 May 2021 08:00:47 GMT expires: - '-1' pragma: @@ -950,15 +916,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -967,7 +933,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:14 GMT + - Mon, 10 May 2021 08:00:48 GMT expires: - '-1' pragma: @@ -1003,15 +969,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1020,7 +986,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:15 GMT + - Mon, 10 May 2021 08:00:49 GMT expires: - '-1' pragma: @@ -1056,15 +1022,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1073,7 +1039,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:17 GMT + - Mon, 10 May 2021 08:00:51 GMT expires: - '-1' pragma: @@ -1109,15 +1075,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1126,7 +1092,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:18 GMT + - Mon, 10 May 2021 08:00:52 GMT expires: - '-1' pragma: @@ -1162,15 +1128,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1179,7 +1145,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:19 GMT + - Mon, 10 May 2021 08:00:54 GMT expires: - '-1' pragma: @@ -1215,15 +1181,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1232,7 +1198,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:21 GMT + - Mon, 10 May 2021 08:00:55 GMT expires: - '-1' pragma: @@ -1268,15 +1234,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1285,7 +1251,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:22 GMT + - Mon, 10 May 2021 08:00:56 GMT expires: - '-1' pragma: @@ -1321,15 +1287,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1338,7 +1304,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:23 GMT + - Mon, 10 May 2021 08:00:58 GMT expires: - '-1' pragma: @@ -1374,15 +1340,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1391,7 +1357,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:24 GMT + - Mon, 10 May 2021 08:00:59 GMT expires: - '-1' pragma: @@ -1427,15 +1393,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1444,7 +1410,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:25 GMT + - Mon, 10 May 2021 08:01:01 GMT expires: - '-1' pragma: @@ -1480,15 +1446,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1497,7 +1463,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:26 GMT + - Mon, 10 May 2021 08:01:02 GMT expires: - '-1' pragma: @@ -1533,15 +1499,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1550,7 +1516,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:27 GMT + - Mon, 10 May 2021 08:01:03 GMT expires: - '-1' pragma: @@ -1586,15 +1552,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1603,7 +1569,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:30 GMT + - Mon, 10 May 2021 08:01:05 GMT expires: - '-1' pragma: @@ -1639,15 +1605,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1656,7 +1622,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:31 GMT + - Mon, 10 May 2021 08:01:06 GMT expires: - '-1' pragma: @@ -1692,15 +1658,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1709,7 +1675,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:32 GMT + - Mon, 10 May 2021 08:01:08 GMT expires: - '-1' pragma: @@ -1745,15 +1711,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1762,7 +1728,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:33 GMT + - Mon, 10 May 2021 08:01:09 GMT expires: - '-1' pragma: @@ -1798,15 +1764,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1815,7 +1781,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:35 GMT + - Mon, 10 May 2021 08:01:11 GMT expires: - '-1' pragma: @@ -1851,15 +1817,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1868,7 +1834,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:36 GMT + - Mon, 10 May 2021 08:01:12 GMT expires: - '-1' pragma: @@ -1904,15 +1870,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1921,7 +1887,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:38 GMT + - Mon, 10 May 2021 08:01:13 GMT expires: - '-1' pragma: @@ -1957,15 +1923,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -1974,7 +1940,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:39 GMT + - Mon, 10 May 2021 08:01:15 GMT expires: - '-1' pragma: @@ -2010,15 +1976,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2027,7 +1993,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:40 GMT + - Mon, 10 May 2021 08:01:16 GMT expires: - '-1' pragma: @@ -2063,15 +2029,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2080,7 +2046,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:41 GMT + - Mon, 10 May 2021 08:01:18 GMT expires: - '-1' pragma: @@ -2116,15 +2082,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2133,7 +2099,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:43 GMT + - Mon, 10 May 2021 08:01:19 GMT expires: - '-1' pragma: @@ -2169,15 +2135,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2186,7 +2152,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:44 GMT + - Mon, 10 May 2021 08:01:20 GMT expires: - '-1' pragma: @@ -2222,15 +2188,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2239,7 +2205,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:45 GMT + - Mon, 10 May 2021 08:01:22 GMT expires: - '-1' pragma: @@ -2275,15 +2241,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2292,7 +2258,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:46 GMT + - Mon, 10 May 2021 08:01:23 GMT expires: - '-1' pragma: @@ -2328,15 +2294,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2345,7 +2311,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:47 GMT + - Mon, 10 May 2021 08:01:25 GMT expires: - '-1' pragma: @@ -2381,15 +2347,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2398,7 +2364,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:48 GMT + - Mon, 10 May 2021 08:01:26 GMT expires: - '-1' pragma: @@ -2434,15 +2400,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2451,7 +2417,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:49 GMT + - Mon, 10 May 2021 08:01:28 GMT expires: - '-1' pragma: @@ -2487,15 +2453,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2504,7 +2470,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:51 GMT + - Mon, 10 May 2021 08:01:29 GMT expires: - '-1' pragma: @@ -2540,15 +2506,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2557,7 +2523,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:53 GMT + - Mon, 10 May 2021 08:01:31 GMT expires: - '-1' pragma: @@ -2593,15 +2559,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2610,7 +2576,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:54 GMT + - Mon, 10 May 2021 08:01:32 GMT expires: - '-1' pragma: @@ -2646,15 +2612,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2663,7 +2629,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:55 GMT + - Mon, 10 May 2021 08:01:33 GMT expires: - '-1' pragma: @@ -2699,15 +2665,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2716,7 +2682,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:56 GMT + - Mon, 10 May 2021 08:01:35 GMT expires: - '-1' pragma: @@ -2752,15 +2718,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2769,7 +2735,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:57 GMT + - Mon, 10 May 2021 08:01:36 GMT expires: - '-1' pragma: @@ -2805,15 +2771,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2822,7 +2788,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:58 GMT + - Mon, 10 May 2021 08:01:37 GMT expires: - '-1' pragma: @@ -2858,15 +2824,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2875,7 +2841,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:25:59 GMT + - Mon, 10 May 2021 08:01:39 GMT expires: - '-1' pragma: @@ -2911,15 +2877,15 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"InProgress","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2928,7 +2894,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:00 GMT + - Mon, 10 May 2021 08:01:40 GMT expires: - '-1' pragma: @@ -2964,24 +2930,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/8f09e153-06da-4193-ad79-637cc5160728?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"8f09e153-06da-4193-ad79-637cc5160728","name":"8f09e153-06da-4193-ad79-637cc5160728","status":"Succeeded","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"2021-05-10T08:00:28.6870386Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f17a7408-1585-4f14-9dd2-f0850f1cb5ac"}}' headers: cache-control: - no-cache content-length: - - '188' + - '304' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:02 GMT + - Mon, 10 May 2021 08:01:42 GMT expires: - '-1' pragma: @@ -3017,30 +2983,32 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/f17a7408-1585-4f14-9dd2-f0850f1cb5ac?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/f17a7408-1585-4f14-9dd2-f0850f1cb5ac","name":"f17a7408-1585-4f14-9dd2-f0850f1cb5ac","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M13.6895378S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"isUserTriggered":true,"entityFriendlyName":"sqltest4","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-10T08:00:28.6870386Z","endTime":"2021-05-10T08:01:42.3765764Z","activityId":"c3a13639-b165-11eb-8851-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '188' + - '745' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:03 GMT + - Mon, 10 May 2021 08:01:44 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3050,7 +3018,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '149' x-powered-by: - ASP.NET status: @@ -3064,30 +3032,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup container show Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -n -v -g --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":8,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1061' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:04 GMT + - Mon, 10 May 2021 08:01:46 GMT expires: - '-1' pragma: @@ -3103,7 +3071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '149' x-powered-by: - ASP.NET status: @@ -3117,30 +3085,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup item show Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -g -v -c -n --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest4?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"369436722049723","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '188' + - '1372' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:05 GMT + - Mon, 10 May 2021 08:01:47 GMT expires: - '-1' pragma: @@ -3156,7 +3124,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '148' x-powered-by: - ASP.NET status: @@ -3170,30 +3138,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup container show Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -n -v -g --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":8,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '188' + - '1061' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:06 GMT + - Mon, 10 May 2021 08:01:49 GMT expires: - '-1' pragma: @@ -3209,7 +3177,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '149' x-powered-by: - ASP.NET status: @@ -3223,30 +3191,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup item show Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -g -v -c -n --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest4?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"369436722049723","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '188' + - '1372' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:09 GMT + - Mon, 10 May 2021 08:01:51 GMT expires: - '-1' pragma: @@ -3262,7 +3230,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '149' x-powered-by: - ASP.NET status: @@ -3276,30 +3244,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup item show Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -g -v -c -n --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest4?api-version=2020-10-01 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"InProgress","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"369436722049723","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '188' + - '1372' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:10 GMT + - Mon, 10 May 2021 08:01:52 GMT expires: - '-1' pragma: @@ -3315,7 +3283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '149' x-powered-by: - ASP.NET status: @@ -3329,30 +3297,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup item list Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -g -v -c --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8e875663-3ec6-40df-a83e-9a37d0eb94c1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 response: body: - string: '{"id":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","name":"8e875663-3ec6-40df-a83e-9a37d0eb94c1","status":"Succeeded","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"2021-01-12T10:24:57.2644904Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"97591b88-c379-45ed-a583-1403cfc1ceda"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","lastBackupTime":"2021-04-30T07:12:44.7097104Z","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":"369436335590262","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;bktest1","name":"SQLDataBase;MSSQLSERVER;bktest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"bktest1","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-04-30T10:34:58.975074Z","protectedItemDataSourceId":"369436384058891","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest3","name":"SQLDataBase;mssqlserver;sqltest3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest3","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:56:21.33191Z","protectedItemDataSourceId":"369436411027462","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"369436722049723","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:52:58.9652967Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest","name":"SQLDataBase;mssqlserver;sqltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:56:00.1760342Z","protectedItemDataSourceId":"369436961546352","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;msdb","name":"SQLDataBase;MSSQLSERVER;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"IRPending","lastBackupTime":"2021-05-10T02:54:58.9215615Z","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":"369437594861959","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;model","name":"SQLDataBase;MSSQLSERVER;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"model","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:30:58.8159865Z","protectedItemDataSourceId":"369437840876323","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '304' + - '11573' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:11 GMT + - Mon, 10 May 2021 08:01:53 GMT expires: - '-1' pragma: @@ -3368,7 +3342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '149' x-powered-by: - ASP.NET status: @@ -3382,38 +3356,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup item list Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -g -v -c --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97591b88-c379-45ed-a583-1403cfc1ceda?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97591b88-c379-45ed-a583-1403cfc1ceda","name":"97591b88-c379-45ed-a583-1403cfc1ceda","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M13.3099114S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-12T10:24:57.2644904Z","endTime":"2021-01-12T10:26:10.5744018Z","activityId":"69bd6449-54c0-11eb-ba03-c8f750f92764"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","lastBackupTime":"2021-04-30T07:12:44.7097104Z","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":"369436335590262","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;bktest1","name":"SQLDataBase;MSSQLSERVER;bktest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"bktest1","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-04-30T10:34:58.975074Z","protectedItemDataSourceId":"369436384058891","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest3","name":"SQLDataBase;mssqlserver;sqltest3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest3","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:56:21.33191Z","protectedItemDataSourceId":"369436411027462","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"369436722049723","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:52:58.9652967Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest","name":"SQLDataBase;mssqlserver;sqltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:56:00.1760342Z","protectedItemDataSourceId":"369436961546352","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;msdb","name":"SQLDataBase;MSSQLSERVER;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"IRPending","lastBackupTime":"2021-05-10T02:54:58.9215615Z","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":"369437594861959","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;model","name":"SQLDataBase;MSSQLSERVER;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"model","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:30:58.8159865Z","protectedItemDataSourceId":"369437840876323","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '749' + - '11573' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:11 GMT + - Mon, 10 May 2021 08:01: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: @@ -3437,30 +3415,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup item list Connection: - keep-alive ParameterSetName: - - -n -v -g --backup-management-type --query + - -g -v --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","lastBackupTime":"2021-04-30T07:12:44.7097104Z","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":"369436335590262","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;bktest1","name":"SQLDataBase;MSSQLSERVER;bktest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"bktest1","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-04-30T10:34:58.975074Z","protectedItemDataSourceId":"369436384058891","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest3","name":"SQLDataBase;mssqlserver;sqltest3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest3","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:56:21.33191Z","protectedItemDataSourceId":"369436411027462","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"369436722049723","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:52:58.9652967Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest","name":"SQLDataBase;mssqlserver;sqltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:56:00.1760342Z","protectedItemDataSourceId":"369436961546352","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;msdb","name":"SQLDataBase;MSSQLSERVER;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"IRPending","lastBackupTime":"2021-05-10T02:54:58.9215615Z","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":"369437594861959","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;model","name":"SQLDataBase;MSSQLSERVER;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"model","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T07:30:58.8159865Z","protectedItemDataSourceId":"369437840876323","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1096' + - '11573' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:12 GMT + - Mon, 10 May 2021 08:01:56 GMT expires: - '-1' pragma: @@ -3476,7 +3460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -3490,30 +3474,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v -c -n --backup-management-type --workload-type + - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest4?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70369085971404","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"369436722049723","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1376' + - '1372' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:13 GMT + - Mon, 10 May 2021 08:01:58 GMT expires: - '-1' pragma: @@ -3529,7 +3513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -3543,30 +3527,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -n -v -g --backup-management-type --query + - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":7}}' headers: cache-control: - no-cache content-length: - - '1096' + - '1058' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:14 GMT + - Mon, 10 May 2021 08:01:59 GMT expires: - '-1' pragma: @@ -3589,58 +3573,59 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup", + "protectedItemType": "AzureVmWorkloadSQLDatabase"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup item set-policy Connection: - keep-alive + Content-Length: + - '239' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -v -c -n --backup-management-type --workload-type + - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest4?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70369085971404","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4/operationsStatus/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 cache-control: - no-cache content-length: - - '1376' - content-type: - - application/json + - '0' date: - - Tue, 12 Jan 2021 10:26:15 GMT + - Mon, 10 May 2021 08:02:02 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4/operationResults/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3649,30 +3634,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item show + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v -c -n --backup-management-type --workload-type + - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70369085971404","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1376' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:15 GMT + - Mon, 10 May 2021 08:02:03 GMT expires: - '-1' pragma: @@ -3688,7 +3673,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: @@ -3702,36 +3687,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v -c --backup-management-type --workload-type + - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70369085971404","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:48.4021489Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"70369341392009","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:56.8837358Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"70369465854044","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}]}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '4371' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:17 GMT + - Mon, 10 May 2021 08:02:04 GMT expires: - '-1' pragma: @@ -3747,7 +3726,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -3761,36 +3740,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v -c --backup-management-type --workload-type + - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70369085971404","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:48.4021489Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"70369341392009","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:56.8837358Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"70369465854044","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}]}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '4371' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:16 GMT + - Mon, 10 May 2021 08:02:06 GMT expires: - '-1' pragma: @@ -3806,7 +3779,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -3820,36 +3793,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup item list + - backup item set-policy Connection: - keep-alive ParameterSetName: - - -g -v --backup-management-type --workload-type + - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70369085971404","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:48.4021489Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"70369341392009","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;model","name":"SQLDataBase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"model","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T10:22:56.8837358Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft - Azure Backup encountered an internal error.","recommendations":["Wait for - a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"70369465854044","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}]}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '4371' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:17 GMT + - Mon, 10 May 2021 08:02:07 GMT expires: - '-1' pragma: @@ -3865,7 +3832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -3885,24 +3852,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70369085971404","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1376' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:18 GMT + - Mon, 10 May 2021 08:02:09 GMT expires: - '-1' pragma: @@ -3918,7 +3885,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '145' x-powered-by: - ASP.NET status: @@ -3938,24 +3905,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-07-12T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-07-12T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":3}}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '1066' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:19 GMT + - Mon, 10 May 2021 08:02:10 GMT expires: - '-1' pragma: @@ -3971,23 +3938,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '144' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": - "SQLDataBase", "containerName": "VMAppContainer;compute;sarath-rg;sarathvm", - "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm", - "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup", - "protectedItemType": "AzureVmWorkloadSQLDatabase", "friendlyName": "msdb", "serverName": - "sarathvm", "parentName": "MSSQLSERVER", "parentType": "AzureVmWorkloadSQLInstance", - "protectionStatus": "Healthy", "protectionState": "IRPending", "lastBackupStatus": - "IRPending", "lastBackupErrorDetail": {}, "protectedItemDataSourceId": "70369085971404", - "protectedItemHealthStatus": "IRPending", "extendedInfo": {"recoveryPointCount": - 0, "policyState": "Consistent"}, "kpisHealths": {}}}' + body: null headers: Accept: - application/json @@ -3997,48 +3955,48 @@ interactions: - backup item set-policy Connection: - keep-alive - Content-Length: - - '962' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 cache-control: - no-cache content-length: - - '0' + - '188' + content-type: + - application/json date: - - Tue, 12 Jan 2021 10:26:20 GMT + - Mon, 10 May 2021 08:02:11 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 pragma: - no-cache + server: + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-ratelimit-remaining-subscription-resource-requests: + - '143' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -4053,24 +4011,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:20 GMT + - Mon, 10 May 2021 08:02:13 GMT expires: - '-1' pragma: @@ -4086,7 +4044,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '142' x-powered-by: - ASP.NET status: @@ -4106,24 +4064,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:21 GMT + - Mon, 10 May 2021 08:02:14 GMT expires: - '-1' pragma: @@ -4139,7 +4097,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '141' x-powered-by: - ASP.NET status: @@ -4159,24 +4117,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:23 GMT + - Mon, 10 May 2021 08:02:16 GMT expires: - '-1' pragma: @@ -4192,7 +4150,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '140' x-powered-by: - ASP.NET status: @@ -4212,24 +4170,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:24 GMT + - Mon, 10 May 2021 08:02:17 GMT expires: - '-1' pragma: @@ -4245,7 +4203,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' + - '139' x-powered-by: - ASP.NET status: @@ -4265,24 +4223,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:25 GMT + - Mon, 10 May 2021 08:02:19 GMT expires: - '-1' pragma: @@ -4298,7 +4256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' + - '138' x-powered-by: - ASP.NET status: @@ -4318,24 +4276,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:26 GMT + - Mon, 10 May 2021 08:02:20 GMT expires: - '-1' pragma: @@ -4351,7 +4309,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' + - '137' x-powered-by: - ASP.NET status: @@ -4371,24 +4329,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:27 GMT + - Mon, 10 May 2021 08:02:21 GMT expires: - '-1' pragma: @@ -4404,7 +4362,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' + - '136' x-powered-by: - ASP.NET status: @@ -4424,24 +4382,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:29 GMT + - Mon, 10 May 2021 08:02:23 GMT expires: - '-1' pragma: @@ -4457,7 +4415,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' + - '135' x-powered-by: - ASP.NET status: @@ -4477,24 +4435,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:30 GMT + - Mon, 10 May 2021 08:02:24 GMT expires: - '-1' pragma: @@ -4510,7 +4468,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' + - '134' x-powered-by: - ASP.NET status: @@ -4530,24 +4488,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:32 GMT + - Mon, 10 May 2021 08:02:26 GMT expires: - '-1' pragma: @@ -4563,7 +4521,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' + - '133' x-powered-by: - ASP.NET status: @@ -4583,24 +4541,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:33 GMT + - Mon, 10 May 2021 08:02:27 GMT expires: - '-1' pragma: @@ -4616,7 +4574,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' + - '132' x-powered-by: - ASP.NET status: @@ -4636,24 +4594,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:34 GMT + - Mon, 10 May 2021 08:02:28 GMT expires: - '-1' pragma: @@ -4669,7 +4627,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' + - '131' x-powered-by: - ASP.NET status: @@ -4689,24 +4647,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:35 GMT + - Mon, 10 May 2021 08:02:30 GMT expires: - '-1' pragma: @@ -4722,7 +4680,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' + - '130' x-powered-by: - ASP.NET status: @@ -4742,24 +4700,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:36 GMT + - Mon, 10 May 2021 08:02:31 GMT expires: - '-1' pragma: @@ -4775,7 +4733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '129' x-powered-by: - ASP.NET status: @@ -4795,24 +4753,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:37 GMT + - Mon, 10 May 2021 08:02:33 GMT expires: - '-1' pragma: @@ -4828,7 +4786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '128' x-powered-by: - ASP.NET status: @@ -4848,24 +4806,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:39 GMT + - Mon, 10 May 2021 08:02:34 GMT expires: - '-1' pragma: @@ -4881,7 +4839,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '127' x-powered-by: - ASP.NET status: @@ -4901,24 +4859,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:40 GMT + - Mon, 10 May 2021 08:02:36 GMT expires: - '-1' pragma: @@ -4934,7 +4892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '126' x-powered-by: - ASP.NET status: @@ -4954,24 +4912,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:41 GMT + - Mon, 10 May 2021 08:02:38 GMT expires: - '-1' pragma: @@ -4987,7 +4945,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '125' x-powered-by: - ASP.NET status: @@ -5007,24 +4965,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:43 GMT + - Mon, 10 May 2021 08:02:39 GMT expires: - '-1' pragma: @@ -5040,7 +4998,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '124' x-powered-by: - ASP.NET status: @@ -5060,24 +5018,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:44 GMT + - Mon, 10 May 2021 08:02:41 GMT expires: - '-1' pragma: @@ -5093,7 +5051,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '123' x-powered-by: - ASP.NET status: @@ -5113,24 +5071,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:45 GMT + - Mon, 10 May 2021 08:02:42 GMT expires: - '-1' pragma: @@ -5146,7 +5104,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '122' x-powered-by: - ASP.NET status: @@ -5166,24 +5124,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:46 GMT + - Mon, 10 May 2021 08:02:44 GMT expires: - '-1' pragma: @@ -5199,7 +5157,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '121' x-powered-by: - ASP.NET status: @@ -5219,24 +5177,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:47 GMT + - Mon, 10 May 2021 08:02:45 GMT expires: - '-1' pragma: @@ -5252,7 +5210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '120' x-powered-by: - ASP.NET status: @@ -5272,24 +5230,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:48 GMT + - Mon, 10 May 2021 08:02:46 GMT expires: - '-1' pragma: @@ -5305,7 +5263,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '119' x-powered-by: - ASP.NET status: @@ -5325,24 +5283,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:50 GMT + - Mon, 10 May 2021 08:02:48 GMT expires: - '-1' pragma: @@ -5358,7 +5316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '118' x-powered-by: - ASP.NET status: @@ -5378,24 +5336,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:26:51 GMT + - Mon, 10 May 2021 08:02:49 GMT expires: - '-1' pragma: @@ -5411,1014 +5369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:26:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10: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-ms-ratelimit-remaining-subscription-resource-requests: - - '122' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10: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-ms-ratelimit-remaining-subscription-resource-requests: - - '121' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:26:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10: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-ms-ratelimit-remaining-subscription-resource-requests: - - '119' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10: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-ms-ratelimit-remaining-subscription-resource-requests: - - '118' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:07 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:10 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item set-policy - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n -p --backup-management-type --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 - response: - body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '187' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:27:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' + - '117' x-powered-by: - ASP.NET status: @@ -6438,24 +5389,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:16 GMT + - Mon, 10 May 2021 08:02:51 GMT expires: - '-1' pragma: @@ -6471,7 +5422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' + - '116' x-powered-by: - ASP.NET status: @@ -6491,24 +5442,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:17 GMT + - Mon, 10 May 2021 08:02:52 GMT expires: - '-1' pragma: @@ -6524,7 +5475,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' + - '115' x-powered-by: - ASP.NET status: @@ -6544,24 +5495,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:18 GMT + - Mon, 10 May 2021 08:02:53 GMT expires: - '-1' pragma: @@ -6577,7 +5528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' + - '114' x-powered-by: - ASP.NET status: @@ -6597,24 +5548,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:19 GMT + - Mon, 10 May 2021 08:02:55 GMT expires: - '-1' pragma: @@ -6630,7 +5581,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' + - '113' x-powered-by: - ASP.NET status: @@ -6650,24 +5601,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:20 GMT + - Mon, 10 May 2021 08:02:56 GMT expires: - '-1' pragma: @@ -6683,7 +5634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' + - '112' x-powered-by: - ASP.NET status: @@ -6703,24 +5654,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:21 GMT + - Mon, 10 May 2021 08:02:58 GMT expires: - '-1' pragma: @@ -6736,7 +5687,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '111' x-powered-by: - ASP.NET status: @@ -6756,24 +5707,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:22 GMT + - Mon, 10 May 2021 08:02:59 GMT expires: - '-1' pragma: @@ -6789,7 +5740,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' + - '110' x-powered-by: - ASP.NET status: @@ -6809,24 +5760,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:24 GMT + - Mon, 10 May 2021 08:03:00 GMT expires: - '-1' pragma: @@ -6842,7 +5793,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '109' x-powered-by: - ASP.NET status: @@ -6862,24 +5813,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:26 GMT + - Mon, 10 May 2021 08:03:02 GMT expires: - '-1' pragma: @@ -6895,7 +5846,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '108' x-powered-by: - ASP.NET status: @@ -6915,24 +5866,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:27 GMT + - Mon, 10 May 2021 08:03:03 GMT expires: - '-1' pragma: @@ -6948,7 +5899,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '107' x-powered-by: - ASP.NET status: @@ -6968,24 +5919,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:28 GMT + - Mon, 10 May 2021 08:03:06 GMT expires: - '-1' pragma: @@ -7001,7 +5952,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + - '106' x-powered-by: - ASP.NET status: @@ -7021,24 +5972,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:29 GMT + - Mon, 10 May 2021 08:03:09 GMT expires: - '-1' pragma: @@ -7054,7 +6005,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '105' x-powered-by: - ASP.NET status: @@ -7074,24 +6025,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:31 GMT + - Mon, 10 May 2021 08:03:12 GMT expires: - '-1' pragma: @@ -7107,7 +6058,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '104' x-powered-by: - ASP.NET status: @@ -7127,24 +6078,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"InProgress","startTime":"2021-01-12T10:26:20.400584Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"InProgress","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:32 GMT + - Mon, 10 May 2021 08:03:14 GMT expires: - '-1' pragma: @@ -7160,7 +6111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '103' x-powered-by: - ASP.NET status: @@ -7180,24 +6131,24 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/4525a85e-3f0f-41be-93e0-9eb6a320c49e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/e5abbf74-9269-4a2b-98e3-7bb53d52020f?api-version=2020-10-01 response: body: - string: '{"id":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","name":"4525a85e-3f0f-41be-93e0-9eb6a320c49e","status":"Succeeded","startTime":"2021-01-12T10:26:20.400584Z","endTime":"2021-01-12T10:26:20.400584Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"d2051f27-4696-4b6b-b4c6-380876cad8c2"}}' + string: '{"id":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","name":"e5abbf74-9269-4a2b-98e3-7bb53d52020f","status":"Succeeded","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"2021-05-10T08:02:03.1855145Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b03dea98-c61f-4157-8ecb-99559b5050cf"}}' headers: cache-control: - no-cache content-length: - - '302' + - '304' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:33 GMT + - Mon, 10 May 2021 08:03:17 GMT expires: - '-1' pragma: @@ -7213,7 +6164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '102' x-powered-by: - ASP.NET status: @@ -7233,25 +6184,25 @@ interactions: ParameterSetName: - -g -v -c -n -p --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/d2051f27-4696-4b6b-b4c6-380876cad8c2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/b03dea98-c61f-4157-8ecb-99559b5050cf?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/d2051f27-4696-4b6b-b4c6-380876cad8c2","name":"d2051f27-4696-4b6b-b4c6-380876cad8c2","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M13.0094084S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-12T10:26:20.400584Z","endTime":"2021-01-12T10:27:33.4099924Z","activityId":"9b57590f-54c0-11eb-8c2e-c8f750f92764"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/b03dea98-c61f-4157-8ecb-99559b5050cf","name":"b03dea98-c61f-4157-8ecb-99559b5050cf","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M12.5467298S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"isUserTriggered":true,"entityFriendlyName":"sqltest4","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-10T08:02:03.1855145Z","endTime":"2021-05-10T08:03:15.7322443Z","activityId":"fdc8fd7b-b165-11eb-9589-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '748' + - '745' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:33 GMT + - Mon, 10 May 2021 08:03:18 GMT expires: - '-1' pragma: @@ -7288,24 +6239,27 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest4?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70369085971404","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-05-10T08:00:47.6137004Z","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":"369436722049723","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1376' + - '1620' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:35 GMT + - Mon, 10 May 2021 08:03:20 GMT expires: - '-1' pragma: @@ -7341,24 +6295,27 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest4?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70369085971404","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-05-10T08:00:47.6137004Z","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":"369436722049723","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1376' + - '1620' content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:36 GMT + - Mon, 10 May 2021 08:03:24 GMT expires: - '-1' pragma: @@ -7374,7 +6331,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -7396,28 +6353,28 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest4?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 12 Jan 2021 10:27:37 GMT + - Mon, 10 May 2021 08:03:25 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperationResults/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperationResults/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -7445,15 +6402,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7462,7 +6419,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:37 GMT + - Mon, 10 May 2021 08:03:27 GMT expires: - '-1' pragma: @@ -7498,15 +6455,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7515,7 +6472,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:38 GMT + - Mon, 10 May 2021 08:03:29 GMT expires: - '-1' pragma: @@ -7551,15 +6508,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7568,7 +6525,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:40 GMT + - Mon, 10 May 2021 08:03:30 GMT expires: - '-1' pragma: @@ -7604,15 +6561,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7621,7 +6578,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:41 GMT + - Mon, 10 May 2021 08:03:32 GMT expires: - '-1' pragma: @@ -7657,15 +6614,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7674,7 +6631,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:43 GMT + - Mon, 10 May 2021 08:03:33 GMT expires: - '-1' pragma: @@ -7710,15 +6667,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7727,7 +6684,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:44 GMT + - Mon, 10 May 2021 08:03:34 GMT expires: - '-1' pragma: @@ -7763,15 +6720,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7780,7 +6737,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:45 GMT + - Mon, 10 May 2021 08:03:36 GMT expires: - '-1' pragma: @@ -7816,15 +6773,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7833,7 +6790,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:46 GMT + - Mon, 10 May 2021 08:03:37 GMT expires: - '-1' pragma: @@ -7869,15 +6826,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7886,7 +6843,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:47 GMT + - Mon, 10 May 2021 08:03:39 GMT expires: - '-1' pragma: @@ -7922,15 +6879,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7939,7 +6896,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:48 GMT + - Mon, 10 May 2021 08:03:40 GMT expires: - '-1' pragma: @@ -7975,15 +6932,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -7992,7 +6949,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:50 GMT + - Mon, 10 May 2021 08:03:41 GMT expires: - '-1' pragma: @@ -8028,15 +6985,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8045,7 +7002,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:52 GMT + - Mon, 10 May 2021 08:03:43 GMT expires: - '-1' pragma: @@ -8081,15 +7038,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8098,7 +7055,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:53 GMT + - Mon, 10 May 2021 08:03:44 GMT expires: - '-1' pragma: @@ -8134,15 +7091,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8151,7 +7108,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:54 GMT + - Mon, 10 May 2021 08:03:46 GMT expires: - '-1' pragma: @@ -8187,15 +7144,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8204,7 +7161,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:55 GMT + - Mon, 10 May 2021 08:03:47 GMT expires: - '-1' pragma: @@ -8240,15 +7197,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8257,7 +7214,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:56 GMT + - Mon, 10 May 2021 08:03:48 GMT expires: - '-1' pragma: @@ -8293,15 +7250,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8310,7 +7267,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:57 GMT + - Mon, 10 May 2021 08:03:50 GMT expires: - '-1' pragma: @@ -8346,15 +7303,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8363,7 +7320,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:27:59 GMT + - Mon, 10 May 2021 08:03:51 GMT expires: - '-1' pragma: @@ -8399,15 +7356,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8416,7 +7373,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:28:00 GMT + - Mon, 10 May 2021 08:03:53 GMT expires: - '-1' pragma: @@ -8452,15 +7409,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8469,7 +7426,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:28:01 GMT + - Mon, 10 May 2021 08:03:54 GMT expires: - '-1' pragma: @@ -8505,15 +7462,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8522,7 +7479,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:28:02 GMT + - Mon, 10 May 2021 08:03:55 GMT expires: - '-1' pragma: @@ -8558,15 +7515,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"InProgress","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -8575,7 +7532,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:28:03 GMT + - Mon, 10 May 2021 08:03:57 GMT expires: - '-1' pragma: @@ -8611,227 +7568,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 - response: - body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:28:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 - response: - body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:28:06 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 - response: - body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:28:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 - response: - body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"InProgress","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 10:28:09 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/8a1e0d14-639c-4075-9ffd-0b1ccd2ada53?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17?api-version=2020-10-01 response: body: - string: '{"id":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","name":"8a1e0d14-639c-4075-9ffd-0b1ccd2ada53","status":"Succeeded","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"2021-01-12T10:27:37.3723232Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"fe85ff87-aaa0-4885-a37a-03dec312ac3c"}}' + string: '{"id":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","name":"d5ef3e64-4c6a-43f3-b429-5b0fb69b6b17","status":"Succeeded","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"2021-05-10T08:03:26.2026225Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"f2c5760a-f4d6-497b-bb31-6d46f5c96b7e"}}' headers: cache-control: - no-cache @@ -8840,7 +7585,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 10:28:10 GMT + - Mon, 10 May 2021 08:03:58 GMT expires: - '-1' pragma: @@ -8856,7 +7601,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '127' x-powered-by: - ASP.NET status: @@ -8876,24 +7621,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/fe85ff87-aaa0-4885-a37a-03dec312ac3c?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/f2c5760a-f4d6-497b-bb31-6d46f5c96b7e?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/fe85ff87-aaa0-4885-a37a-03dec312ac3c","name":"fe85ff87-aaa0-4885-a37a-03dec312ac3c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.4423536S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-12T10:27:37.3723232Z","endTime":"2021-01-12T10:28:09.8146768Z","activityId":"c9750018-54c0-11eb-ba4d-c8f750f92764"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/f2c5760a-f4d6-497b-bb31-6d46f5c96b7e","name":"f2c5760a-f4d6-497b-bb31-6d46f5c96b7e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.1065138S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"sqltest4","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-10T08:03:26.2026225Z","endTime":"2021-05-10T08:03:58.3091363Z","activityId":"2fdd6e70-b166-11eb-aa48-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '717' + - '713' content-type: - application/json date: - - Tue, 12 Jan 2021 10:28:11 GMT + - Mon, 10 May 2021 08:03:59 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_policy.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_policy.yaml index d9241efc83f..d99e935d191 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_policy.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_policy.yaml @@ -1,4 +1,93 @@ interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - vm list + Connection: + - keep-alive + ParameterSetName: + - --resource-group --query + User-Agent: + - AZURECLI/2.22.1 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines?api-version=2021-03-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"sqlvm\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"a4c9508b-b0d8-4255-9871-ea527c1f3670\",\r\n + \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n + \ },\r\n \"storageProfile\": {\r\n \"imageReference\": + {\r\n \"publisher\": \"microsoftsqlserver\",\r\n \"offer\": + \"sql2019-ws2019\",\r\n \"sku\": \"sqldev\",\r\n \"version\": + \"latest\",\r\n \"exactVersion\": \"15.0.210413\"\r\n },\r\n + \ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": + \"sqlvm_OsDisk_1_457bc646f0164467a053e346c4b6b1fa\",\r\n \"createOption\": + \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"StandardSSD_LRS\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/disks/sqlvm_OsDisk_1_457bc646f0164467a053e346c4b6b1fa\"\r\n + \ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": + [\r\n {\r\n \"lun\": 0,\r\n \"name\": + \"sqlvm_DataDisk_0\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": + \"ReadOnly\",\r\n \"writeAcceleratorEnabled\": false,\r\n \"managedDisk\": + {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/disks/sqlvm_DataDisk_0\"\r\n + \ },\r\n \"diskSizeGB\": 1024,\r\n \"toBeDetached\": + false\r\n },\r\n {\r\n \"lun\": 1,\r\n + \ \"name\": \"sqlvm_DataDisk_1\",\r\n \"createOption\": + \"Attach\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": + false,\r\n \"managedDisk\": {\r\n \"storageAccountType\": + \"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/disks/sqlvm_DataDisk_1\"\r\n + \ },\r\n \"diskSizeGB\": 1024,\r\n \"toBeDetached\": + false\r\n }\r\n ]\r\n },\r\n \"osProfile\": + {\r\n \"computerName\": \"sqlvm\",\r\n \"adminUsername\": + \"azureadmin\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": + true,\r\n \"enableAutomaticUpdates\": true,\r\n \"patchSettings\": + {\r\n \"patchMode\": \"AutomaticByOS\",\r\n \"enableHotpatching\": + false\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Network/networkInterfaces/sqlvm556\"}]},\r\n + \ \"diagnosticsProfile\": {\r\n \"bootDiagnostics\": {\r\n + \ \"enabled\": true\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm/extensions/AzureBackupWindowsWorkload\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm/extensions/SqlIaasExtension\"\r\n + \ }\r\n ]\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3681' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 30 Apr 2021 06:44:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;695 + status: + code: 200 + message: OK - request: body: null headers: @@ -13,24 +102,24 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18: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' + - '1058' content-type: - application/json date: - - Mon, 11 Jan 2021 12:29:09 GMT + - Fri, 30 Apr 2021 06:45:01 GMT expires: - '-1' pragma: @@ -46,20 +135,20 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureWorkload", + body: '{"properties": {"protectedItemsCount": 1, "backupManagementType": "AzureWorkload", "workLoadType": "SQLDataBase", "settings": {"timeZone": "UTC", "issqlcompression": false, "isCompression": false}, "subProtectionPolicy": [{"policyType": "Full", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", "scheduleRunFrequency": - "Daily", "scheduleRunTimes": ["2019-10-30T20:00:00.000Z"], "scheduleWeeklyFrequency": + "Daily", "scheduleRunTimes": ["2021-04-29T18:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", "dailySchedule": - {"retentionTimes": ["2019-10-30T20:00:00.000Z"], "retentionDuration": {"count": + {"retentionTimes": ["2021-04-29T18:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}}, {"policyType": "Log", "schedulePolicy": {"schedulePolicyType": "LogSchedulePolicy", "scheduleFrequencyInMins": 60}, "retentionPolicy": {"retentionPolicyType": "SimpleRetentionPolicy", "retentionDuration": {"count": 30, "durationType": @@ -80,24 +169,24 @@ interactions: ParameterSetName: - -g -v --policy --backup-management-type --workload-type --name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/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":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18: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' + - '1076' content-type: - application/json date: - - Mon, 11 Jan 2021 12:29:09 GMT + - Fri, 30 Apr 2021 06:45:02 GMT expires: - '-1' pragma: @@ -133,24 +222,24 @@ interactions: ParameterSetName: - -g -v User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policyowdn5qnwad","name":"clitest-policyowdn5qnwad","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policyricu3u3vop","name":"clitest-policyricu3u3vop","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18: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/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/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":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18: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: - - '5130' + - '2890' content-type: - application/json date: - - Mon, 11 Jan 2021 12:29:10 GMT + - Fri, 30 Apr 2021 06:45:04 GMT expires: - '-1' pragma: @@ -173,13 +262,13 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"protectedItemsCount": 0, "backupManagementType": "AzureWorkload", + body: '{"properties": {"protectedItemsCount": 1, "backupManagementType": "AzureWorkload", "workLoadType": "SQLDataBase", "settings": {"timeZone": "UTC", "issqlcompression": true, "isCompression": true}, "subProtectionPolicy": [{"policyType": "Full", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", "scheduleRunFrequency": - "Daily", "scheduleRunTimes": ["2019-10-30T20:00:00.000Z"], "scheduleWeeklyFrequency": + "Daily", "scheduleRunTimes": ["2021-04-29T18:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", "dailySchedule": - {"retentionTimes": ["2019-10-30T20:00:00.000Z"], "retentionDuration": {"count": + {"retentionTimes": ["2021-04-29T18:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}}, {"policyType": "Log", "schedulePolicy": {"schedulePolicyType": "LogSchedulePolicy", "scheduleFrequencyInMins": 60}, "retentionPolicy": {"retentionPolicyType": "SimpleRetentionPolicy", "retentionDuration": {"count": 30, "durationType": @@ -200,24 +289,24 @@ interactions: ParameterSetName: - -g -v --policy -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/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":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18: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' + - '1074' content-type: - application/json date: - - Mon, 11 Jan 2021 12:29:11 GMT + - Fri, 30 Apr 2021 06:45:07 GMT expires: - '-1' pragma: @@ -253,24 +342,24 @@ interactions: ParameterSetName: - -g -v --backup-management-type --fix-for-inconsistent-items -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/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":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18: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' + - '1074' content-type: - application/json date: - - Mon, 11 Jan 2021 12:29:11 GMT + - Fri, 30 Apr 2021 06:45:08 GMT expires: - '-1' pragma: @@ -297,9 +386,9 @@ interactions: "workLoadType": "SQLDataBase", "settings": {"timeZone": "UTC", "issqlcompression": true, "isCompression": true}, "subProtectionPolicy": [{"policyType": "Full", "schedulePolicy": {"schedulePolicyType": "SimpleSchedulePolicy", "scheduleRunFrequency": - "Daily", "scheduleRunTimes": ["2019-10-30T20:00:00.000Z"], "scheduleWeeklyFrequency": + "Daily", "scheduleRunTimes": ["2021-04-29T18:00:00.000Z"], "scheduleWeeklyFrequency": 0}, "retentionPolicy": {"retentionPolicyType": "LongTermRetentionPolicy", "dailySchedule": - {"retentionTimes": ["2019-10-30T20:00:00.000Z"], "retentionDuration": {"count": + {"retentionTimes": ["2021-04-29T18:00:00.000Z"], "retentionDuration": {"count": 30, "durationType": "Days"}}}}, {"policyType": "Log", "schedulePolicy": {"schedulePolicyType": "LogSchedulePolicy", "scheduleFrequencyInMins": 60}, "retentionPolicy": {"retentionPolicyType": "SimpleRetentionPolicy", "retentionDuration": {"count": 30, "durationType": @@ -320,24 +409,24 @@ interactions: ParameterSetName: - -g -v --backup-management-type --fix-for-inconsistent-items -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/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":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18: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' + - '1074' content-type: - application/json date: - - Mon, 11 Jan 2021 12:29:12 GMT + - Fri, 30 Apr 2021 06:45:09 GMT expires: - '-1' pragma: @@ -353,7 +442,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -373,24 +462,24 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001","name":"clitest-policy000001","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/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":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18: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' + - '1074' content-type: - application/json date: - - Mon, 11 Jan 2021 12:29:12 GMT + - Fri, 30 Apr 2021 06:45:11 GMT expires: - '-1' pragma: @@ -406,7 +495,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -428,12 +517,12 @@ interactions: ParameterSetName: - -g -v -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policy000001?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/clitest-policy000001?api-version=2020-10-01 response: body: string: '' @@ -443,7 +532,7 @@ interactions: content-length: - '0' date: - - Mon, 11 Jan 2021 12:29:14 GMT + - Fri, 30 Apr 2021 06:45:12 GMT expires: - '-1' pragma: @@ -473,24 +562,24 @@ interactions: ParameterSetName: - -g -v User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policyowdn5qnwad","name":"clitest-policyowdn5qnwad","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/clitest-policyricu3u3vop","name":"clitest-policyricu3u3vop","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":true,"isCompression":true},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2019-10-30T20:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2019-10-30T20:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":0}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18: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/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/DefaultPolicy","name":"DefaultPolicy","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureIaasVM","instantRPDetails":{},"schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}},"instantRpRetentionRangeInDays":2,"timeZone":"UTC","protectedItemsCount":0}}]}' headers: cache-control: - no-cache content-length: - - '4035' + - '1813' content-type: - application/json date: - - Mon, 11 Jan 2021 12:29:15 GMT + - Fri, 30 Apr 2021 06:45:14 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protectable_item.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protectable_item.yaml index b8e8bc4b997..a0079596d8b 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protectable_item.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protectable_item.yaml @@ -7,30 +7,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container register + - backup container list Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id + - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;akneema;akneema-hana-vm","name":"VMAppContainer;Compute;akneema;akneema-hana-vm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"akneema-hana-vm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-vm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","name":"VMAppContainer;Compute;clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s;clitest-vmnpb2n","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmnpb2n","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2vca3lt2qdbc72orfike724awvoue5gamjctjdrqs5jehxgsvp57jbk7ihm5dgp5s/providers/Microsoft.Compute/virtualMachines/clitest-vmnpb2n"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","name":"VMAppContainer;Compute;clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq;clitest-vmxj2c5","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmxj2c5","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xagnyg7oax2mefrhwkjalribvzi7dkmlgvtoqbd73ont3kkpchs4pfna4wuryizq/providers/Microsoft.Compute/virtualMachines/clitest-vmxj2c5"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest-vm757zh","name":"VMAppContainer;Compute;clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6;clitest-vm757zh","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm757zh","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcgbzoiahl4ofcev3vrnu4qvpnryvnxq4aaiwgrqa5734x4ihslt75hvwodum4wby6/providers/Microsoft.Compute/virtualMachines/clitest-vm757zh"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw;clitest-vmxhsp4","name":"VMAppContainer;Compute;clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw;clitest-vmxhsp4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmxhsp4","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg7fyodgkmygyyjqeldrd2euvbyt4few756xtysgqt7f24fdvbwm2huzjltvrhnhiw/providers/Microsoft.Compute/virtualMachines/clitest-vmxhsp4"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75","name":"VMAppContainer;Compute;clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend;clitest-vmzyo75","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmzyo75","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxrauyrpp7x3s5z7pxsvfisogstwb6xsklcaksov4zh5p6xyaouqrldgnm7ichend/providers/Microsoft.Compute/virtualMachines/clitest-vmzyo75"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h;clitest-vm7oe3h","name":"VMAppContainer;Compute;clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h;clitest-vm7oe3h","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm7oe3h","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgpzkrtw6gc4bpjxox7od7alaqlx67gq7jqzcfpscti6pjwotnwya6nofwa5s4oam5h/providers/Microsoft.Compute/virtualMachines/clitest-vm7oe3h"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw;clitest-vm7pkgm","name":"VMAppContainer;Compute;clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw;clitest-vm7pkgm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vm7pkgm","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqulrsgjkuu36udr6rm7h7tp5gz7qzorvmwfpkz7pvrwxz652r3igtlnlvuyosg3jw/providers/Microsoft.Compute/virtualMachines/clitest-vm7pkgm"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb;clitest-vmpu4sw","name":"VMAppContainer;Compute;clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb;clitest-vmpu4sw","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmpu4sw","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtmppfarpwrkjdcpxwto4cx47hysjl7mpwhsngsazabzqn5r6h6afcqqoozs4ddofb/providers/Microsoft.Compute/virtualMachines/clitest-vmpu4sw"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","name":"VMAppContainer;Compute;clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows;clitest-vmjunig","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmjunig","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguke3kv6ksih5g2gryxgeefqswrxiq24cwsspgsjjh7z3dgze2a6kir3rp5fbhlows/providers/Microsoft.Compute/virtualMachines/clitest-vmjunig"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","name":"VMAppContainer;Compute;clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf;clitest-vmvsxff","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmvsxff","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwtuygjmxue6hnwz2hwugvugdws7h3y2xjzk67dh2zi6ovjurae2njjkezdd7ihetf/providers/Microsoft.Compute/virtualMachines/clitest-vmvsxff"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","name":"VMAppContainer;Compute;clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5;clitest-vmsruqi","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"clitest-vmsruqi","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzmhvh5zvp7mylfn2zzcfsi3na27areoijmpb2vqwdvvnqufjrgxyhfn4br2hxsgf5/providers/Microsoft.Compute/virtualMachines/clitest-vmsruqi"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;DinosRGUR1;sdsadsad","name":"VMAppContainer;Compute;DinosRGUR1;sdsadsad","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sdsadsad","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DinosRGUR1/providers/Microsoft.Compute/virtualMachines/sdsadsad"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoobanner10","name":"VMAppContainer;Compute;gesahoo;gesahoobanner10","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoobanner10","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoobanner10"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","name":"VMAppContainer;Compute;gesahoo;gesahoosqlbannervm4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlbannervm4","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlbannervm4"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","name":"VMAppContainer;Compute;gesahoo;gesahoosqlinprogress2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"gesahoosqlinprogress2","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/gesahoosqlinprogress2"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;gesahoo;sqlvmgeeta","name":"VMAppContainer;Compute;gesahoo;sqlvmgeeta","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sqlvmgeeta","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/gesahoo/providers/Microsoft.Compute/virtualMachines/sqlvmgeeta"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;Nilay-RG;nilsha-test","name":"VMAppContainer;Compute;Nilay-RG;nilsha-test","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"nilsha-test","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Nilay-RG/providers/Microsoft.Compute/virtualMachines/nilsha-test"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;dikextest","name":"VMAppContainer;Compute;sarath-rg;dikextest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dikextest","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/dikextest"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;sarath-rg;sarathPSTest001","name":"VMAppContainer;Compute;sarath-rg;sarathPSTest001","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sarathPSTest001","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathPSTest001"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shrja2008_group;shrja2008","name":"VMAppContainer;Compute;shrja2008_group;shrja2008","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shrja2008","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shrja2008_group/providers/Microsoft.Compute/virtualMachines/shrja2008"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-man-pssd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-man-pssd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-man-pssd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","name":"VMAppContainer;Compute;shswain-rg-donotuse;shswain-lin-unman-shdd","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"shswain-lin-unman-shdd","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-donotuse/providers/Microsoft.Compute/virtualMachines/shswain-lin-unman-shdd"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","name":"VMAppContainer;Compute;shswain-rg-restoredata;dsadsa","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"dsadsa","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/dsadsa"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectableContainers/VMAppContainer;Compute;shswain-rg-restoredata;sddsds","name":"VMAppContainer;Compute;shswain-rg-restoredata;sddsds","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectableContainers","properties":{"friendlyName":"sddsds","backupManagementType":"AzureWorkload","protectableContainerType":"VMAppContainer","healthStatus":"Healthy","containerId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shswain-rg-restoredata/providers/Microsoft.Compute/virtualMachines/sddsds"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":8,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '20177' + - '1073' content-type: - application/json date: - - Sat, 16 Jan 2021 17:21:05 GMT + - Mon, 10 May 2021 09:11:41 GMT expires: - '-1' pragma: @@ -52,65 +52,6 @@ interactions: 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 --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted - request: body: null headers: @@ -119,42 +60,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container register + - backup container show Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id + - -n -v -g --query --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm?api-version=2020-10-01 response: body: - string: '{}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":8,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1061' content-type: - application/json date: - - Sat, 16 Jan 2021 17:21:07 GMT + - Mon, 10 May 2021 09:11:42 GMT expires: - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -162,8 +103,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -172,42 +113,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container register + - backup protectable-item list Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id + - -g --vault-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 response: body: - string: '{}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":8,"subprotectableitemcount":8,"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/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqldatabase;mssqlserver;msdb_restored_5_10_2021_1527","name":"sqldatabase;mssqlserver;msdb_restored_5_10_2021_1527","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb_restored_5_10_2021_1527","protectionState":"NotProtected"}}]}' headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview cache-control: - no-cache content-length: - - '2' + - '1596' content-type: - application/json date: - - Sat, 16 Jan 2021 17:21:09 GMT + - Mon, 10 May 2021 09: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 pragma: - no-cache server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: @@ -215,273 +156,8 @@ interactions: x-powered-by: - ASP.NET status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:21:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:21:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -490,12992 +166,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container register + - backup protectable-item show Connection: - keep-alive ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:21:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:21:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:21:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:21:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:21:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:21:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:21:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:21:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:21:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:32 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:46 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:22:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '55' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23: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/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '54' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '53' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '52' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '51' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '50' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '48' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '47' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:16 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '46' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '45' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '44' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '43' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '42' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '41' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '40' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '39' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '38' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:27 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '37' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '36' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '35' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '34' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '33' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '32' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '31' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '30' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '29' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:38 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '28' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:40 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '27' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:41 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '26' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:42 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '25' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '23' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '22' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '21' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '20' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '19' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '18' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:51 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '17' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '16' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '15' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '14' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '13' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '12' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:23:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '11' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '10' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '9' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '8' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '7' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '6' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '5' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '4' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '3' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '2' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '1' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '0' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:24:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '-1' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container register - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type --workload-type --resource-id - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/c3e817cc-0994-489f-b383-0d42d910d599?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:22:13.4325579Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' - headers: - cache-control: - - no-cache - content-length: - - '1081' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:39 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container list - Connection: - - keep-alive - ParameterSetName: - - -v -g --backup-management-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:22:13.4325579Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '4879' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container show - Connection: - - keep-alive - ParameterSetName: - - -n -v -g --query --backup-management-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-16T17:22:13.4325579Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' - headers: - cache-control: - - no-cache - content-length: - - '1159' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protectable-item list - Connection: - - keep-alive - ParameterSetName: - - -g --vault-name --workload-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8895/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8895","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8896/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8896","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb","name":"sqldatabase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb","protectionState":"NotProtected"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '6073' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protectable-item show - Connection: - - keep-alive - ParameterSetName: - - -g --vault-name --name --workload-type --protectable-item-type --server-name - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 - response: - body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8895/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8895","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestvm8896/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm8896","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":4,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectableItems/sqldatabase;mssqlserver;testdb","name":"sqldatabase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestwlvm1bca8","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"testdb","protectionState":"NotProtected"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '6073' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:42 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8?api-version=2020-10-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '0' - date: - - Sat, 16 Jan 2021 17:29:43 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupOperationResults/75fa7767-2347-48f4-91be-5530df7011db?fabricName=Azure?api-version=2020-10-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:48 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:52 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:57 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:29:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:01 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:10 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '118' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '117' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '116' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '115' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '114' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '113' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '112' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '111' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '110' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '109' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '108' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '107' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '106' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '105' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '104' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '103' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '102' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:44 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '101' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:45 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '100' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '98' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:49 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:50 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:53 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:54 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:55 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30: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/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:58 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:30:59 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:00 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:02 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:03 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:05 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '85' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:06 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '84' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:07 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '83' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:08 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '82' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:09 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '81' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:11 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '80' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:12 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '79' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:13 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '78' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:14 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '77' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '76' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '75' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:18 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '74' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:19 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '73' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:20 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '72' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:21 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '71' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:23 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '70' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:24 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '69' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:25 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '68' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:26 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '67' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:28 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '66' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:29 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '65' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:30 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '64' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:31 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '63' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '62' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:34 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '61' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:35 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '60' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:36 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '59' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:37 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '58' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '{}' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationsStatus/75fa7767-2347-48f4-91be-5530df7011db?api-version=2019-05-13-preview - cache-control: - - no-cache - content-length: - - '2' - content-type: - - application/json - date: - - Sat, 16 Jan 2021 17:31:39 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '57' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup container unregister - Connection: - - keep-alive - ParameterSetName: - - -v -g -c -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/operationResults/75fa7767-2347-48f4-91be-5530df7011db?api-version=2020-10-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-type: - - application/json; charset=utf-8 - date: - - Sat, 16 Jan 2021 17:31:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '56' - 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 --backup-management-type + - -g --vault-name --name --workload-type --protectable-item-type --server-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.18.0 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":8,"subprotectableitemcount":8,"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/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqldatabase;mssqlserver;msdb_restored_5_10_2021_1527","name":"sqldatabase;mssqlserver;msdb_restored_5_10_2021_1527","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb_restored_5_10_2021_1527","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '3719' + - '1596' content-type: - application/json date: - - Sat, 16 Jan 2021 17:31:41 GMT + - Mon, 10 May 2021 09:11:44 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml index 97d6ede99df..352634a11c9 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_protection.yaml @@ -13,54 +13,24 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;pstestvm","name":"VMAppContainer;Compute;sarath-rg;pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/pstestvm","lastUpdatedTime":"2019-10-30T12:37:05.4211371Z","extendedInfo":{"hostServerName":"pstestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","lastUpdatedTime":"2020-11-18T08:07:45.5099006Z","extendedInfo":{"hostServerName":"sarath-sqltestv","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarath-sqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathsqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarathsqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathsqltestvm","lastUpdatedTime":"2020-05-07T06:32:24.7564937Z","extendedInfo":{"hostServerName":"sarathsqltestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathsqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;testsqlvm","name":"VMAppContainer;Compute;sarath-rg;testsqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/testsqlvm","lastUpdatedTime":"2019-11-22T10:04:21.462885Z","extendedInfo":{"hostServerName":"testsqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"testsqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","lastUpdatedTime":"2019-11-22T09:44:17.4760592Z","extendedInfo":{"inquiryInfo":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No - SQL instances found on this machine.","recommendations":["Please install a - supported version of SQL and try again later."]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No - SQL instances found on this machine.","recommendations":["Please install a - supported version of SQL and try again later."]},"additionalDetail":"UserErrorNoSQlInstancesOnMachine"}}]}},"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;testrg;pstestvm1","name":"VMAppContainer;Compute;testrg;pstestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Compute/virtualMachines/pstestvm1","lastUpdatedTime":"2019-11-04T06:51:45.8473207Z","extendedInfo":{"hostServerName":"pstestvm1","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":9,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '10681' + - '1073' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:15 GMT + - Tue, 11 May 2021 06:33:03 GMT expires: - '-1' pragma: @@ -76,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -96,28 +66,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;pstestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;testrg;pstestvm1/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm1","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":9,"subprotectableitemcount":9,"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/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqldatabase;mssqlserver;sqltest6","name":"sqldatabase;mssqlserver;sqltest6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"sqltest6","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '12895' + - '1536' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:16 GMT + - Tue, 11 May 2021 06:33:10 GMT expires: - '-1' pragma: @@ -133,7 +99,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -153,24 +119,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2020-07-12T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2020-07-12T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":2}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","name":"HourlyLogBackup","type":"Microsoft.RecoveryServices/vaults/backupPolicies","properties":{"backupManagementType":"AzureWorkload","workLoadType":"SQLDataBase","settings":{"timeZone":"UTC","issqlcompression":false,"isCompression":false},"subProtectionPolicy":[{"policyType":"Full","schedulePolicy":{"schedulePolicyType":"SimpleSchedulePolicy","scheduleRunFrequency":"Daily","scheduleRunTimes":["2021-04-29T18:00:00Z"],"scheduleWeeklyFrequency":0},"retentionPolicy":{"retentionPolicyType":"LongTermRetentionPolicy","dailySchedule":{"retentionTimes":["2021-04-29T18:00:00Z"],"retentionDuration":{"count":30,"durationType":"Days"}}}},{"policyType":"Log","schedulePolicy":{"schedulePolicyType":"LogSchedulePolicy","scheduleFrequencyInMins":60},"retentionPolicy":{"retentionPolicyType":"SimpleRetentionPolicy","retentionDuration":{"count":30,"durationType":"Days"}}}],"protectedItemsCount":8}}' headers: cache-control: - no-cache content-length: - - '1066' + - '1058' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:16 GMT + - Tue, 11 May 2021 06:33:14 GMT expires: - '-1' pragma: @@ -186,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '146' x-powered-by: - ASP.NET status: @@ -194,7 +160,7 @@ interactions: message: OK - request: body: '{"properties": {"backupManagementType": "AzureWorkload", "workloadType": - "SQLDataBase", "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup", + "SQLDataBase", "policyId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup", "protectedItemType": "AzureVmWorkloadSQLDatabase"}}' headers: Accept: @@ -206,34 +172,34 @@ interactions: Connection: - keep-alive Content-Length: - - '319' + - '311' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest6?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationsStatus/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectedItems/sqldatabase;mssqlserver;sqltest6/operationsStatus/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 12 Jan 2021 11:26:18 GMT + - Tue, 11 May 2021 06:33:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectedItems/sqldatabase;mssqlserver;msdb/operationResults/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectedItems/sqldatabase;mssqlserver;sqltest6/operationResults/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -261,24 +227,77 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 + response: + body: + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 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-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection enable-for-azurewl + Connection: + - keep-alive + ParameterSetName: + - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:19 GMT + - Tue, 11 May 2021 06:33:19 GMT expires: - '-1' pragma: @@ -314,24 +333,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:20 GMT + - Tue, 11 May 2021 06:33:20 GMT expires: - '-1' pragma: @@ -367,24 +386,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:21 GMT + - Tue, 11 May 2021 06:33:22 GMT expires: - '-1' pragma: @@ -420,24 +439,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:23 GMT + - Tue, 11 May 2021 06:33:23 GMT expires: - '-1' pragma: @@ -473,24 +492,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:24 GMT + - Tue, 11 May 2021 06:33:24 GMT expires: - '-1' pragma: @@ -526,24 +545,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:25 GMT + - Tue, 11 May 2021 06:33:26 GMT expires: - '-1' pragma: @@ -579,24 +598,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:26 GMT + - Tue, 11 May 2021 06:33:27 GMT expires: - '-1' pragma: @@ -632,24 +651,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:27 GMT + - Tue, 11 May 2021 06:33:28 GMT expires: - '-1' pragma: @@ -685,24 +704,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:28 GMT + - Tue, 11 May 2021 06:33:30 GMT expires: - '-1' pragma: @@ -738,24 +757,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:29 GMT + - Tue, 11 May 2021 06:33:31 GMT expires: - '-1' pragma: @@ -791,24 +810,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:30 GMT + - Tue, 11 May 2021 06:33:33 GMT expires: - '-1' pragma: @@ -844,24 +863,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:33 GMT + - Tue, 11 May 2021 06:33:34 GMT expires: - '-1' pragma: @@ -897,24 +916,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:34 GMT + - Tue, 11 May 2021 06:33:36 GMT expires: - '-1' pragma: @@ -950,24 +969,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:35 GMT + - Tue, 11 May 2021 06:33:37 GMT expires: - '-1' pragma: @@ -1003,24 +1022,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:36 GMT + - Tue, 11 May 2021 06:33:38 GMT expires: - '-1' pragma: @@ -1056,24 +1075,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:37 GMT + - Tue, 11 May 2021 06:33:40 GMT expires: - '-1' pragma: @@ -1109,24 +1128,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:38 GMT + - Tue, 11 May 2021 06:33:41 GMT expires: - '-1' pragma: @@ -1162,24 +1181,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:39 GMT + - Tue, 11 May 2021 06:33:43 GMT expires: - '-1' pragma: @@ -1215,24 +1234,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:41 GMT + - Tue, 11 May 2021 06:33:45 GMT expires: - '-1' pragma: @@ -1268,24 +1287,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:42 GMT + - Tue, 11 May 2021 06:33:46 GMT expires: - '-1' pragma: @@ -1321,24 +1340,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:43 GMT + - Tue, 11 May 2021 06:33:48 GMT expires: - '-1' pragma: @@ -1374,24 +1393,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:44 GMT + - Tue, 11 May 2021 06:33:49 GMT expires: - '-1' pragma: @@ -1427,24 +1446,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:45 GMT + - Tue, 11 May 2021 06:33:50 GMT expires: - '-1' pragma: @@ -1480,24 +1499,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:46 GMT + - Tue, 11 May 2021 06:33:52 GMT expires: - '-1' pragma: @@ -1533,24 +1552,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:47 GMT + - Tue, 11 May 2021 06:33:53 GMT expires: - '-1' pragma: @@ -1586,24 +1605,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:50 GMT + - Tue, 11 May 2021 06:33:54 GMT expires: - '-1' pragma: @@ -1639,24 +1658,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:51 GMT + - Tue, 11 May 2021 06:33:56 GMT expires: - '-1' pragma: @@ -1692,24 +1711,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:52 GMT + - Tue, 11 May 2021 06:33:57 GMT expires: - '-1' pragma: @@ -1745,24 +1764,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:53 GMT + - Tue, 11 May 2021 06:33:59 GMT expires: - '-1' pragma: @@ -1798,24 +1817,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:54 GMT + - Tue, 11 May 2021 06:34:01 GMT expires: - '-1' pragma: @@ -1851,24 +1870,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:55 GMT + - Tue, 11 May 2021 06:34:02 GMT expires: - '-1' pragma: @@ -1904,24 +1923,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:57 GMT + - Tue, 11 May 2021 06:34:04 GMT expires: - '-1' pragma: @@ -1957,24 +1976,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:58 GMT + - Tue, 11 May 2021 06:34:05 GMT expires: - '-1' pragma: @@ -2010,24 +2029,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:26:59 GMT + - Tue, 11 May 2021 06:34:06 GMT expires: - '-1' pragma: @@ -2063,24 +2082,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:00 GMT + - Tue, 11 May 2021 06:34:08 GMT expires: - '-1' pragma: @@ -2116,24 +2135,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:01 GMT + - Tue, 11 May 2021 06:34:09 GMT expires: - '-1' pragma: @@ -2169,24 +2188,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:03 GMT + - Tue, 11 May 2021 06:34:11 GMT expires: - '-1' pragma: @@ -2222,24 +2241,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:04 GMT + - Tue, 11 May 2021 06:34:12 GMT expires: - '-1' pragma: @@ -2275,24 +2294,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:05 GMT + - Tue, 11 May 2021 06:34:13 GMT expires: - '-1' pragma: @@ -2328,24 +2347,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:06 GMT + - Tue, 11 May 2021 06:34:15 GMT expires: - '-1' pragma: @@ -2381,24 +2400,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:08 GMT + - Tue, 11 May 2021 06:34:16 GMT expires: - '-1' pragma: @@ -2434,24 +2453,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:10 GMT + - Tue, 11 May 2021 06:34:18 GMT expires: - '-1' pragma: @@ -2487,24 +2506,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:11 GMT + - Tue, 11 May 2021 06:34:19 GMT expires: - '-1' pragma: @@ -2540,24 +2559,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:12 GMT + - Tue, 11 May 2021 06:34:21 GMT expires: - '-1' pragma: @@ -2593,24 +2612,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:13 GMT + - Tue, 11 May 2021 06:34:22 GMT expires: - '-1' pragma: @@ -2646,24 +2665,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:14 GMT + - Tue, 11 May 2021 06:34:23 GMT expires: - '-1' pragma: @@ -2699,24 +2718,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:15 GMT + - Tue, 11 May 2021 06:34:25 GMT expires: - '-1' pragma: @@ -2752,24 +2771,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:17 GMT + - Tue, 11 May 2021 06:34:26 GMT expires: - '-1' pragma: @@ -2805,24 +2824,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:18 GMT + - Tue, 11 May 2021 06:34:28 GMT expires: - '-1' pragma: @@ -2858,24 +2877,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"InProgress","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '187' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:20 GMT + - Tue, 11 May 2021 06:34:29 GMT expires: - '-1' pragma: @@ -2911,24 +2930,24 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f489f22b-39d7-4aca-be43-aee7ed088e99?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f489f22b-39d7-4aca-be43-aee7ed088e99","name":"f489f22b-39d7-4aca-be43-aee7ed088e99","status":"Succeeded","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"2021-05-11T06:33:16.9642384Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"5e783c88-c730-43f4-9160-9e6c04a74426"}}' headers: cache-control: - no-cache content-length: - - '187' + - '304' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:21 GMT + - Tue, 11 May 2021 06:34:30 GMT expires: - '-1' pragma: @@ -2964,30 +2983,32 @@ interactions: ParameterSetName: - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/5e783c88-c730-43f4-9160-9e6c04a74426?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/5e783c88-c730-43f4-9160-9e6c04a74426","name":"5e783c88-c730-43f4-9160-9e6c04a74426","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M12.8382049S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy + Name":"HourlyLogBackup"}},"isUserTriggered":true,"entityFriendlyName":"sqltest6","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-05-11T06:33:16.9642384Z","endTime":"2021-05-11T06:34:29.8024433Z","activityId":"bd02c5a7-b222-11eb-abd7-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '187' + - '745' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:22 GMT + - Tue, 11 May 2021 06:34: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: @@ -2997,7 +3018,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '97' + - '149' x-powered-by: - ASP.NET status: @@ -3011,30 +3032,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup container show Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -n -v -g --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":9,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '187' + - '1061' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:23 GMT + - Tue, 11 May 2021 06:34:33 GMT expires: - '-1' pragma: @@ -3050,7 +3071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '96' + - '149' x-powered-by: - ASP.NET status: @@ -3064,30 +3085,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest6?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest6","name":"SQLDataBase;mssqlserver;sqltest6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest6","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"369437214387012","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '187' + - '1372' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:24 GMT + - Tue, 11 May 2021 06:34:34 GMT expires: - '-1' pragma: @@ -3103,65 +3124,66 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '95' + - '148' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: null + body: '{"properties": {"objectType": "AzureWorkloadBackupRequest", "backupType": + "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2021-06-10T06:34:34.699426Z"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup protection backup-now Connection: - keep-alive + Content-Length: + - '173' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + method: POST + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest6/backup?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest6/operationsStatus/b0eb7ce7-e438-4bd0-b322-94b048268089?api-version=2020-10-01 cache-control: - no-cache content-length: - - '187' - content-type: - - application/json + - '0' date: - - Tue, 12 Jan 2021 11:27:25 GMT + - Tue, 11 May 2021 06:34:35 GMT expires: - '-1' + location: + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest6/operationResults/b0eb7ce7-e438-4bd0-b322-94b048268089?api-version=2020-10-01 pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '94' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -3170,30 +3192,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/b0eb7ce7-e438-4bd0-b322-94b048268089?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"b0eb7ce7-e438-4bd0-b322-94b048268089","name":"b0eb7ce7-e438-4bd0-b322-94b048268089","status":"Succeeded","startTime":"2021-05-11T06:34:36.4341338Z","endTime":"2021-05-11T06:34:36.4341338Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"ec10f7ab-8ea0-4f29-9702-672dafd76d9d"}}' headers: cache-control: - no-cache content-length: - - '187' + - '304' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:26 GMT + - Tue, 11 May 2021 06:34:37 GMT expires: - '-1' pragma: @@ -3209,7 +3231,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '93' + - '149' x-powered-by: - ASP.NET status: @@ -3223,36 +3245,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup protection backup-now Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -v -g -i -c --backup-type --enable-compression User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d","name":"ec10f7ab-8ea0-4f29-9702-672dafd76d9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1.7009864S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"sqltest6 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-05-11T06:34:36.4341338Z","activityId":"f24b9603-b222-11eb-9609-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '187' + - '752' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:28 GMT + - Tue, 11 May 2021 06:34: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: @@ -3262,7 +3287,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '92' + - '149' x-powered-by: - ASP.NET status: @@ -3276,36 +3301,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup job wait Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d","name":"ec10f7ab-8ea0-4f29-9702-672dafd76d9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.4272423S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"sqltest6 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-05-11T06:34:36.4341338Z","activityId":"f24b9603-b222-11eb-9609-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '187' + - '752' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:30 GMT + - Tue, 11 May 2021 06: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: @@ -3315,7 +3343,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '91' + - '149' x-powered-by: - ASP.NET status: @@ -3329,36 +3357,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup job wait Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d","name":"ec10f7ab-8ea0-4f29-9702-672dafd76d9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.8010586S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"sqltest6 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-05-11T06:34:36.4341338Z","activityId":"f24b9603-b222-11eb-9609-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '187' + - '752' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:31 GMT + - Tue, 11 May 2021 06:34:40 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3368,7 +3399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '90' + - '148' x-powered-by: - ASP.NET status: @@ -3382,36 +3413,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup job wait Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d","name":"ec10f7ab-8ea0-4f29-9702-672dafd76d9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT34.2758848S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"sqltest6 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-05-11T06:34:36.4341338Z","activityId":"f24b9603-b222-11eb-9609-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '187' + - '753' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:32 GMT + - Tue, 11 May 2021 06:35:10 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3421,7 +3455,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '89' + - '147' x-powered-by: - ASP.NET status: @@ -3435,36 +3469,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup job wait Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"InProgress","startTime":"2021-01-12T11:26:18.779124Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d","name":"ec10f7ab-8ea0-4f29-9702-672dafd76d9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M4.8291702S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"sqltest6 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-05-11T06:34:36.4341338Z","activityId":"f24b9603-b222-11eb-9609-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '187' + - '754' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:33 GMT + - Tue, 11 May 2021 06:35:40 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3474,7 +3511,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '88' + - '146' x-powered-by: - ASP.NET status: @@ -3488,36 +3525,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup job wait Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/7ff82d87-5f3e-4c49-ab86-d4d7c9c29746?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d?api-version=2020-10-01 response: body: - string: '{"id":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","name":"7ff82d87-5f3e-4c49-ab86-d4d7c9c29746","status":"Succeeded","startTime":"2021-01-12T11:26:18.779124Z","endTime":"2021-01-12T11:26:18.779124Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"069fad2c-20e6-4f1c-ac80-b6b3ae59d0a1"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d","name":"ec10f7ab-8ea0-4f29-9702-672dafd76d9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M35.2137044S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"sqltest6 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-05-11T06:34:36.4341338Z","activityId":"f24b9603-b222-11eb-9609-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '302' + - '755' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:34 GMT + - Tue, 11 May 2021 06: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: @@ -3527,7 +3567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '87' + - '145' x-powered-by: - ASP.NET status: @@ -3541,31 +3581,33 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection enable-for-azurewl + - backup job wait Connection: - keep-alive ParameterSetName: - - -v -g -p --protectable-item-type --protectable-item-name --server-name --workload-type + - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/069fad2c-20e6-4f1c-ac80-b6b3ae59d0a1?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/069fad2c-20e6-4f1c-ac80-b6b3ae59d0a1","name":"069fad2c-20e6-4f1c-ac80-b6b3ae59d0a1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M14.776769S","extendedInfo":{"tasksList":[],"propertyBag":{"Policy - Name":"HourlyLogBackup"}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"ConfigureBackup","status":"Completed","startTime":"2021-01-12T11:26:18.779124Z","endTime":"2021-01-12T11:27:33.555893Z","activityId":"fbe3cb27-54c8-11eb-8917-c8f750f92764"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/ec10f7ab-8ea0-4f29-9702-672dafd76d9d","name":"ec10f7ab-8ea0-4f29-9702-672dafd76d9d","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M1.768889S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"20.0845"}},"isUserTriggered":true,"entityFriendlyName":"sqltest6 [sqlvm]","backupManagementType":"AzureWorkload","operation":"Backup + (Full)","status":"Completed","startTime":"2021-05-11T06:34:36.4341338Z","endTime":"2021-05-11T06:36:38.2030228Z","activityId":"f24b9603-b222-11eb-9609-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '746' + - '828' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:35 GMT + - Tue, 11 May 2021 06:36:41 GMT expires: - '-1' pragma: @@ -3582,7 +3624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '144' x-powered-by: - ASP.NET status: @@ -3596,30 +3638,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup container show + - backup item show Connection: - keep-alive ParameterSetName: - - -n -v -g --backup-management-type --query + - -g -v -c -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest6?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest6","name":"SQLDataBase;mssqlserver;sqltest6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest6","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:35:35.7532285Z","protectedItemDataSourceId":"369437214387012","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-11T06:34:57Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:34:57Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1096' + - '1598' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:35 GMT + - Tue, 11 May 2021 06:37:13 GMT expires: - '-1' pragma: @@ -3635,7 +3677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -3649,30 +3691,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection disable Connection: - keep-alive ParameterSetName: - - -v -g -i -c --backup-type --enable-compression + - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest6?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupErrorDetail":{"code":"Success","message":""},"protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest6","name":"SQLDataBase;mssqlserver;sqltest6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest6","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:35:35.7532285Z","protectedItemDataSourceId":"369437214387012","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-11T06:34:57Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:34:57Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1376' + - '1598' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:37 GMT + - Tue, 11 May 2021 06:37:15 GMT expires: - '-1' pragma: @@ -3688,53 +3730,53 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' + - '149' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"objectType": "AzureWorkloadBackupRequest", "backupType": - "Full", "enableCompression": false, "recoveryPointExpiryTimeInUTC": "2021-02-11T11:27:37.66585Z"}}' + body: '{"properties": {"policyId": "", "protectedItemType": "AzureVmWorkloadSQLDatabase", + "protectionState": "ProtectionStopped"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection disable Connection: - keep-alive Content-Length: - - '172' + - '123' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -v -g -i -c --backup-type --enable-compression + - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US - method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/backup?api-version=2020-10-01 + method: PUT + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest6?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/6c62af1b-3d14-42c1-b77c-afb7b711a427?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest6/operationsStatus/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 12 Jan 2021 11:27:38 GMT + - Tue, 11 May 2021 06:37:16 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/6c62af1b-3d14-42c1-b77c-afb7b711a427?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest6/operationResults/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -3742,7 +3784,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -3756,30 +3798,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection disable Connection: - keep-alive ParameterSetName: - - -v -g -i -c --backup-type --enable-compression + - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/6c62af1b-3d14-42c1-b77c-afb7b711a427?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"6c62af1b-3d14-42c1-b77c-afb7b711a427","name":"6c62af1b-3d14-42c1-b77c-afb7b711a427","status":"Succeeded","startTime":"2021-01-12T11:27:38.3668181Z","endTime":"2021-01-12T11:27:38.3668181Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"82e7e934-13a2-497c-b78e-6a8a6cd2c670"}}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:38 GMT + - Tue, 11 May 2021 06:37:17 GMT expires: - '-1' pragma: @@ -3809,39 +3851,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup protection backup-now + - backup protection disable Connection: - keep-alive ParameterSetName: - - -v -g -i -c --backup-type --enable-compression + - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1.6856981S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '759' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:40 GMT + - Tue, 11 May 2021 06:37:19 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3865,39 +3904,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -v -g -n + - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.2073523S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '759' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:39 GMT + - Tue, 11 May 2021 06:37:20 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3907,7 +3943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -3921,39 +3957,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -v -g -n + - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.5880713S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '759' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:27:40 GMT + - Tue, 11 May 2021 06:37: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: @@ -3963,7 +3996,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -3977,39 +4010,36 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - backup job wait + - backup protection disable Connection: - keep-alive ParameterSetName: - - -v -g -n + - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.8124691S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '760' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 11:28:10 GMT + - Tue, 11 May 2021 06:37:23 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -4019,866 +4049,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '147' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -v -g -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M3.0463197S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '761' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:28:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '146' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -v -g -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M33.3116989S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"InProgress"}],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup (Full)","status":"InProgress","startTime":"2021-01-12T11:27:38.3668181Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '762' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:29:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup job wait - Connection: - - keep-alive - ParameterSetName: - - -v -g -n - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/82e7e934-13a2-497c-b78e-6a8a6cd2c670","name":"82e7e934-13a2-497c-b78e-6a8a6cd2c670","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M2.4653931S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data to vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"20.1147"}},"isUserTriggered":true,"entityFriendlyName":"msdb [sarathvm]","backupManagementType":"AzureWorkload","operation":"Backup - (Full)","status":"Completed","startTime":"2021-01-12T11:27:38.3668181Z","endTime":"2021-01-12T11:29:40.8322112Z","activityId":"2c0084f5-54c9-11eb-964a-c8f750f92764"}}' - headers: - cache-control: - - no-cache - content-length: - - '836' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:29:41 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup item show - Connection: - - keep-alive - ParameterSetName: - - -g -v -c -n --backup-management-type - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T11:28:40.5907715Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T11:27:59Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '1602' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 - response: - body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T11:28:40.5907715Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T11:27:59Z"}}' - headers: - cache-control: - - no-cache - content-length: - - '1602' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: '{"properties": {"policyId": "", "protectedItemType": "AzureVmWorkloadSQLDatabase", - "protectionState": "ProtectionStopped"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - Content-Length: - - '123' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 12 Jan 2021 11:30:15 GMT - expires: - - '-1' - location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - x-powered-by: - - ASP.NET - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - response: - body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '145' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - response: - body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '144' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - response: - body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '143' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - response: - body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '142' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - response: - body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '141' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - response: - body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '140' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - response: - body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:23 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '139' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - response: - body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '138' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - response: - body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '137' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup protection disable - Connection: - - keep-alive - ParameterSetName: - - -v -g -i -c --backup-management-type -y - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 - response: - body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 11:30:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '136' + - '145' x-powered-by: - ASP.NET status: @@ -4898,15 +4069,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4915,7 +4086,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:27 GMT + - Tue, 11 May 2021 06:37:24 GMT expires: - '-1' pragma: @@ -4931,7 +4102,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '135' + - '144' x-powered-by: - ASP.NET status: @@ -4951,15 +4122,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -4968,7 +4139,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:29 GMT + - Tue, 11 May 2021 06:37:26 GMT expires: - '-1' pragma: @@ -4984,7 +4155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '134' + - '143' x-powered-by: - ASP.NET status: @@ -5004,15 +4175,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5021,7 +4192,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:30 GMT + - Tue, 11 May 2021 06:37:27 GMT expires: - '-1' pragma: @@ -5037,7 +4208,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '133' + - '142' x-powered-by: - ASP.NET status: @@ -5057,15 +4228,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5074,7 +4245,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:31 GMT + - Tue, 11 May 2021 06:37:28 GMT expires: - '-1' pragma: @@ -5090,7 +4261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '132' + - '141' x-powered-by: - ASP.NET status: @@ -5110,15 +4281,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5127,7 +4298,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:32 GMT + - Tue, 11 May 2021 06:37:30 GMT expires: - '-1' pragma: @@ -5143,7 +4314,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '131' + - '140' x-powered-by: - ASP.NET status: @@ -5163,15 +4334,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5180,7 +4351,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:33 GMT + - Tue, 11 May 2021 06:37:32 GMT expires: - '-1' pragma: @@ -5196,7 +4367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '130' + - '139' x-powered-by: - ASP.NET status: @@ -5216,15 +4387,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5233,7 +4404,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:35 GMT + - Tue, 11 May 2021 06:37:34 GMT expires: - '-1' pragma: @@ -5249,7 +4420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '129' + - '138' x-powered-by: - ASP.NET status: @@ -5269,15 +4440,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5286,7 +4457,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:36 GMT + - Tue, 11 May 2021 06:37:35 GMT expires: - '-1' pragma: @@ -5302,7 +4473,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '128' + - '137' x-powered-by: - ASP.NET status: @@ -5322,15 +4493,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5339,7 +4510,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:37 GMT + - Tue, 11 May 2021 06:37:37 GMT expires: - '-1' pragma: @@ -5355,7 +4526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '127' + - '136' x-powered-by: - ASP.NET status: @@ -5375,15 +4546,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5392,7 +4563,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:39 GMT + - Tue, 11 May 2021 06:37:38 GMT expires: - '-1' pragma: @@ -5408,7 +4579,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '126' + - '135' x-powered-by: - ASP.NET status: @@ -5428,15 +4599,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5445,7 +4616,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:40 GMT + - Tue, 11 May 2021 06:37:39 GMT expires: - '-1' pragma: @@ -5461,7 +4632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '125' + - '134' x-powered-by: - ASP.NET status: @@ -5481,15 +4652,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5498,7 +4669,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:41 GMT + - Tue, 11 May 2021 06:37:41 GMT expires: - '-1' pragma: @@ -5514,7 +4685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '124' + - '133' x-powered-by: - ASP.NET status: @@ -5534,15 +4705,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5551,7 +4722,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:43 GMT + - Tue, 11 May 2021 06:37:42 GMT expires: - '-1' pragma: @@ -5567,7 +4738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '123' + - '132' x-powered-by: - ASP.NET status: @@ -5587,15 +4758,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5604,7 +4775,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:44 GMT + - Tue, 11 May 2021 06:37:44 GMT expires: - '-1' pragma: @@ -5620,7 +4791,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '122' + - '131' x-powered-by: - ASP.NET status: @@ -5640,15 +4811,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5657,7 +4828,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:45 GMT + - Tue, 11 May 2021 06:37:45 GMT expires: - '-1' pragma: @@ -5673,7 +4844,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '121' + - '130' x-powered-by: - ASP.NET status: @@ -5693,15 +4864,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"InProgress","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"InProgress","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -5710,7 +4881,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:46 GMT + - Tue, 11 May 2021 06:37:46 GMT expires: - '-1' pragma: @@ -5726,7 +4897,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '120' + - '129' x-powered-by: - ASP.NET status: @@ -5746,15 +4917,15 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/27e10ba4-397e-482d-8c12-d189d3fbcc4f?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/f62e8c3a-1408-49c3-821d-d3390ce2aa0d?api-version=2020-10-01 response: body: - string: '{"id":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","name":"27e10ba4-397e-482d-8c12-d189d3fbcc4f","status":"Succeeded","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"2021-01-12T11:30:15.2108388Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"2d7718c1-0e08-432c-8864-41a725023e28"}}' + string: '{"id":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","name":"f62e8c3a-1408-49c3-821d-d3390ce2aa0d","status":"Succeeded","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"2021-05-11T06:37:16.9504175Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"91490366-f0ee-403b-9073-db18705fd1ac"}}' headers: cache-control: - no-cache @@ -5763,7 +4934,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:47 GMT + - Tue, 11 May 2021 06:37:48 GMT expires: - '-1' pragma: @@ -5779,7 +4950,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '119' + - '128' x-powered-by: - ASP.NET status: @@ -5799,24 +4970,24 @@ interactions: ParameterSetName: - -v -g -i -c --backup-management-type -y User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/2d7718c1-0e08-432c-8864-41a725023e28?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/91490366-f0ee-403b-9073-db18705fd1ac?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/2d7718c1-0e08-432c-8864-41a725023e28","name":"2d7718c1-0e08-432c-8864-41a725023e28","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT31.8276663S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2021-01-12T11:30:15.2108388Z","endTime":"2021-01-12T11:30:47.0385051Z","activityId":"88f2fe19-54c9-11eb-8144-c8f750f92764"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/91490366-f0ee-403b-9073-db18705fd1ac","name":"91490366-f0ee-403b-9073-db18705fd1ac","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT31.5831509S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"sqltest6","backupManagementType":"AzureWorkload","operation":"DisableBackup","status":"Completed","startTime":"2021-05-11T06:37:16.9504175Z","endTime":"2021-05-11T06:37:48.5335684Z","activityId":"516708da-b223-11eb-a37a-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '714' + - '710' content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:48 GMT + - Tue, 11 May 2021 06:37:49 GMT expires: - '-1' pragma: @@ -5833,7 +5004,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -5853,24 +5024,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest6?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T11:28:40.5907715Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastRecoveryPoint":"2021-01-12T11:27:59Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest6","name":"SQLDataBase;mssqlserver;sqltest6","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest6","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:35:35.7532285Z","protectedItemDataSourceId":"369437214387012","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-11T06:34:57Z","recoveryPointCount":1,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastRecoveryPoint":"2021-05-11T06:34:57Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1432' + - '1436' content-type: - application/json date: - - Tue, 12 Jan 2021 11:30:48 GMT + - Tue, 11 May 2021 06:37:52 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml index e2bc3ff49e4..d01a51f0c68 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore.yaml @@ -13,54 +13,24 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;pstestvm","name":"VMAppContainer;Compute;sarath-rg;pstestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/pstestvm","lastUpdatedTime":"2019-10-30T12:37:05.4211371Z","extendedInfo":{"hostServerName":"pstestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarath-sqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarath-sqltestvm","lastUpdatedTime":"2020-11-18T08:07:45.5099006Z","extendedInfo":{"hostServerName":"sarath-sqltestv","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarath-sqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathsqltestvm","name":"VMAppContainer;Compute;sarath-rg;sarathsqltestvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathsqltestvm","lastUpdatedTime":"2020-05-07T06:32:24.7564937Z","extendedInfo":{"hostServerName":"sarathsqltestvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathsqltestvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;testsqlvm","name":"VMAppContainer;Compute;sarath-rg;testsqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/testsqlvm","lastUpdatedTime":"2019-11-22T10:04:21.462885Z","extendedInfo":{"hostServerName":"testsqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"testsqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sisi-RSV;sisi-mercury","name":"VMAppContainer;Compute;sisi-RSV;sisi-mercury","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisi-RSV/providers/Microsoft.Compute/virtualMachines/sisi-mercury","lastUpdatedTime":"2019-11-22T09:44:17.4760592Z","extendedInfo":{"inquiryInfo":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No - SQL instances found on this machine.","recommendations":["Please install a - supported version of SQL and try again later."]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorNoSQlInstancesOnMachine","message":"No - SQL instances found on this machine.","recommendations":["Please install a - supported version of SQL and try again later."]},"additionalDetail":"UserErrorNoSQlInstancesOnMachine"}}]}},"friendlyName":"sisi-mercury","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;testrg;pstestvm1","name":"VMAppContainer;Compute;testrg;pstestvm1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testrg/providers/Microsoft.Compute/virtualMachines/pstestvm1","lastUpdatedTime":"2019-11-04T06:51:45.8473207Z","extendedInfo":{"hostServerName":"pstestvm1","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}},{"type":"SAPHana","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm1","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":9,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '10681' + - '1073' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:09 GMT + - Tue, 11 May 2021 07:20:19 GMT expires: - '-1' pragma: @@ -76,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -96,24 +66,24 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm","name":"VMAppContainer;Compute;sarath-rg;sarathvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","lastUpdatedTime":"2021-01-12T10:03:24.1366581Z","extendedInfo":{"hostServerName":"sarathvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":3,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sarathvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":9,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '1096' + - '1061' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:10 GMT + - Tue, 11 May 2021 07:20:20 GMT expires: - '-1' pragma: @@ -149,24 +119,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest2?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T11:47:16Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:53:01.2576029Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-10T03:52:51Z","recoveryPointCount":12,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:52:12Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1753' + - '1599' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:11 GMT + - Tue, 11 May 2021 07:20:22 GMT expires: - '-1' pragma: @@ -182,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '146' x-powered-by: - ASP.NET status: @@ -202,24 +172,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest2?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T11:47:16Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:53:01.2576029Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-10T03:52:51Z","recoveryPointCount":12,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:52:12Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1753' + - '1599' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:11 GMT + - Tue, 11 May 2021 07:20:23 GMT expires: - '-1' pragma: @@ -235,7 +205,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -255,24 +225,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest2/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/35418445464598","name":"35418445464598","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-12T11:47:16Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/48527656679648","name":"48527656679648","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-12T11:27:59Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2/recoveryPoints/506716423694513","name":"506716423694513","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-11T03:52:44Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2/recoveryPoints/499251417572435","name":"499251417572435","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-10T03:52:51Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[{"startTime":"2021-05-11T03:52:42Z","endTime":"2021-05-11T06:52:12Z"},{"startTime":"2021-05-10T03:52:49Z","endTime":"2021-05-10T10:52:11Z"}],"type":"Log"}}]}' headers: cache-control: - no-cache content-length: - - '1673' + - '1783' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:12 GMT + - Tue, 11 May 2021 07:20:25 GMT expires: - '-1' pragma: @@ -309,28 +279,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectableItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadType%20eq%20%27SQLDataBase%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;pstestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarath-sqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarath-sqltestv","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathsqltestvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathsqltestvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":3,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;master","name":"sqldatabase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"master","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;model","name":"sqldatabase;mssqlserver;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"model","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;testsqlvm/protectableItems/sqldatabase;mssqlserver;msdb","name":"sqldatabase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"testsqlvm","isAutoProtectable":false,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"IsProtectable":true,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLDataBase","friendlyName":"msdb","protectionState":"NotProtected"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;testrg;pstestvm1/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"pstestvm1","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":0,"subprotectableitemcount":0,"prebackupvalidation":{"status":"Failed","code":"UserErrorOpeningSQLConnection","message":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm/protectableItems/sqlinstance;mssqlserver","name":"sqlinstance;mssqlserver","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectableItems","properties":{"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":true,"isAutoProtected":false,"subinquireditemcount":9,"subprotectableitemcount":9,"prebackupvalidation":{"status":"Success","code":"Success"},"IsProtectable":false,"backupManagementType":"AzureWorkload","workloadType":"SQL","protectableItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '12149' + - '796' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:14 GMT + - Tue, 11 May 2021 07:20:27 GMT expires: - '-1' pragma: @@ -367,24 +333,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest2?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T11:47:16Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:53:01.2576029Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-10T03:52:51Z","recoveryPointCount":12,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:52:12Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1753' + - '1599' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:14 GMT + - Tue, 11 May 2021 07:20:29 GMT expires: - '-1' pragma: @@ -400,7 +366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -421,24 +387,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest2?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T11:47:16Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:53:01.2576029Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-10T03:52:51Z","recoveryPointCount":12,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:52:12Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1753' + - '1599' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:15 GMT + - Tue, 11 May 2021 07:20:32 GMT expires: - '-1' pragma: @@ -454,7 +420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -475,26 +441,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/35418445464598?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest2/recoveryPoints/506716423694513?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/35418445464598","name":"35418445464598","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-01-12T11:47:16Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program - Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf","logicalName":"MSDBData"},{"type":"Log","path":"C:\\Program - Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-01-12T11:47:16Z","type":"Full"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2/recoveryPoints/506716423694513","name":"506716423694513","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-05-11T03:52:44Z","dataDirectoryPaths":[{"type":"Data","path":"F:\\data\\sqltest2.mdf","logicalName":"sqltest2"},{"type":"Log","path":"G:\\log\\sqltest2_log.ldf","logicalName":"sqltest2_log"}]},"recoveryPointTimeInUTC":"2021-05-11T03:52:44Z","type":"Full"}}' headers: cache-control: - no-cache content-length: - - '914' + - '784' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:16 GMT + - Tue, 11 May 2021 07:20:32 GMT expires: - '-1' pragma: @@ -510,7 +474,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -531,24 +495,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --item-name --container-name --target-item-name --target-server-type --target-server-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/items?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadItemType%20eq%20%27SQLInstance%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/items?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20workloadItemType%20eq%20%27SQLInstance%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;sarath-rg;sarathvm/protectableItems/SQLInstance;MSSQLSERVER","name":"SQLInstance;MSSQLSERVER","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/items","properties":{"dataDirectoryPaths":[{"type":"Data","path":"F:\\data\\"},{"type":"Log","path":"G:\\log\\"}],"parentName":"MSSQLSERVER","serverName":"sarathvm","isAutoProtectable":true,"subinquireditemcount":0,"subWorkloadItemCount":3,"backupManagementType":"AzureWorkload","workloadType":"SQL","workloadItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectableItems/SQLInstance;MSSQLSERVER","name":"SQLInstance;MSSQLSERVER","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/items","properties":{"dataDirectoryPaths":[{"type":"Data","path":"F:\\data\\"},{"type":"Log","path":"G:\\log\\"}],"parentName":"MSSQLSERVER","serverName":"sqlvm","isAutoProtectable":true,"subinquireditemcount":0,"subWorkloadItemCount":9,"backupManagementType":"AzureWorkload","workloadType":"SQL","workloadItemType":"SQLInstance","friendlyName":"MSSQLSERVER","protectionState":"NotProtected"}}]}' headers: cache-control: - no-cache content-length: - - '784' + - '766' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:16 GMT + - Tue, 11 May 2021 07:20:33 GMT expires: - '-1' pragma: @@ -572,15 +536,13 @@ interactions: message: OK - request: body: '{"properties": {"objectType": "AzureWorkloadSQLRestoreRequest", "recoveryType": - "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm", - "targetInfo": {"overwriteOption": "Overwrite", "containerId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;sarath-rg;sarathvm", + "AlternateLocation", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm", + "targetInfo": {"overwriteOption": "Overwrite", "containerId": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;bksql;sqlvm", "databaseName": "MSSQLSERVER/MSSQLSERVER"}, "shouldUseAlternateTargetLocation": true, "isNonRecoverable": false, "alternateDirectoryPaths": [{"mappingType": - "Data", "sourceLogicalName": "MSDBData", "sourcePath": "C:\\Program Files\\Microsoft - SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf", "targetPath": "F:\\data\\MSDBData_1610452337.mdf"}, - {"mappingType": "Log", "sourceLogicalName": "MSDBLog", "sourcePath": "C:\\Program - Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf", - "targetPath": "G:\\log\\MSDBLog_1610452337.ldf"}]}}' + "Data", "sourceLogicalName": "sqltest2", "sourcePath": "F:\\data\\sqltest2.mdf", + "targetPath": "F:\\data\\sqltest2_1620717633.mdf"}, {"mappingType": "Log", "sourceLogicalName": + "sqltest2_log", "sourcePath": "G:\\log\\sqltest2_log.ldf", "targetPath": "G:\\log\\sqltest2_log_1620717633.ldf"}]}}' headers: Accept: - application/json @@ -591,34 +553,34 @@ interactions: Connection: - keep-alive Content-Length: - - '1101' + - '963' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/35418445464598/restore?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest2/recoveryPoints/506716423694513/restore?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/71a5a36a-7c72-471b-ade8-423650acef7b?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2/operationsStatus/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 12 Jan 2021 11:52:17 GMT + - Tue, 11 May 2021 07:20:35 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/71a5a36a-7c72-471b-ade8-423650acef7b?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2/operationResults/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -646,15 +608,15 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/71a5a36a-7c72-471b-ade8-423650acef7b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 response: body: - string: '{"id":"71a5a36a-7c72-471b-ade8-423650acef7b","name":"71a5a36a-7c72-471b-ade8-423650acef7b","status":"Succeeded","startTime":"2021-01-12T11:52:17.9388081Z","endTime":"2021-01-12T11:52:17.9388081Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"c53dd090-48d2-4694-a6d1-5da6a405e3a3"}}' + string: '{"id":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","status":"Succeeded","startTime":"2021-05-11T07:20:35.4543485Z","endTime":"2021-05-11T07:20:35.4543485Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1"}}' headers: cache-control: - no-cache @@ -663,7 +625,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:18 GMT + - Tue, 11 May 2021 07:20:36 GMT expires: - '-1' pragma: @@ -679,7 +641,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '97' x-powered-by: - ASP.NET status: @@ -699,27 +661,84 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.6923092S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:20:35.4543485Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '794' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:20:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1.6335998S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT5.4831591S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:20:35.4543485Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '801' + - '794' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:19 GMT + - Tue, 11 May 2021 07:20:40 GMT expires: - '-1' pragma: @@ -756,27 +775,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.0813322S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT5.9550406S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:20:35.4543485Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '801' + - '794' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:19 GMT + - Tue, 11 May 2021 07:20:41 GMT expires: - '-1' pragma: @@ -813,27 +832,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.3298422S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT36.4031557S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:20:35.4543485Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '801' + - '795' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:20 GMT + - Tue, 11 May 2021 07:21:11 GMT expires: - '-1' pragma: @@ -870,27 +889,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.5966183S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M7.984954S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:20:35.4543485Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '802' + - '795' content-type: - application/json date: - - Tue, 12 Jan 2021 11:52:49 GMT + - Tue, 11 May 2021 07:21:42 GMT expires: - '-1' pragma: @@ -927,27 +946,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M2.8758236S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M38.457419S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:20:35.4543485Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '803' + - '796' content-type: - application/json date: - - Tue, 12 Jan 2021 11:53:20 GMT + - Tue, 11 May 2021 07:22:13 GMT expires: - '-1' pragma: @@ -984,27 +1003,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M33.1406482S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M8.9017188S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:20:35.4543485Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '804' + - '796' content-type: - application/json date: - - Tue, 12 Jan 2021 11:53:50 GMT + - Tue, 11 May 2021 07:22:44 GMT expires: - '-1' pragma: @@ -1041,27 +1060,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M3.442121S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M39.3859767S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:20:35.4543485Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '802' + - '797' content-type: - application/json date: - - Tue, 12 Jan 2021 11:54:20 GMT + - Tue, 11 May 2021 07:23:14 GMT expires: - '-1' pragma: @@ -1098,27 +1117,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M33.7249508S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M9.8147322S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:52:17.9388081Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:20:35.4543485Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '804' + - '796' content-type: - application/json date: - - Tue, 12 Jan 2021 11:54:50 GMT + - Tue, 11 May 2021 07:23:45 GMT expires: - '-1' pragma: @@ -1155,28 +1174,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/c53dd090-48d2-4694-a6d1-5da6a405e3a3","name":"c53dd090-48d2-4694-a6d1-5da6a405e3a3","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M2.221676S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer - data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"20.1147","Job Type":"Recovery to an alternate database","RestoreRecoveryPointTime":"2021-01-12 - 11:47:16Z","RestoreDestination":"sarathvm/MSSQLSERVER/MSSQLSERVER"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-01-12T11:52:17.9388081Z","endTime":"2021-01-12T11:55:20.1604841Z","activityId":"9e461562-54cc-11eb-93cb-c8f750f92764"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M41.1067919S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:20:35.4543485Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '991' + - '797' content-type: - application/json date: - - Tue, 12 Jan 2021 11:55:21 GMT + - Tue, 11 May 2021 07:24:15 GMT expires: - '-1' pragma: @@ -1199,6 +1217,121 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M11.5378462S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery + to an alternate database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:20:35.4543485Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '797' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:24:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '140' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup job wait + Connection: + - keep-alive + ParameterSetName: + - -v -g -n + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","name":"9bcc35fe-81e0-4be3-9d42-4b051ebc7ab1","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M32.8427139S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in + MB)":"20.0845","Job Type":"Recovery to an alternate database","RestoreRecoveryPointTime":"2021-05-11 + 03:52:44Z","RestoreDestination":"sqlvm/MSSQLSERVER/MSSQLSERVER"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-05-11T07:20:35.4543485Z","endTime":"2021-05-11T07:25:08.2970624Z","activityId":"5f85f1f5-b229-11eb-b2c2-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '983' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:25:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '139' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK - request: body: null headers: @@ -1213,24 +1346,24 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest2?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T11:47:16Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:53:01.2576029Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-10T03:52:51Z","recoveryPointCount":12,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:52:12Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1753' + - '1751' content-type: - application/json date: - - Tue, 12 Jan 2021 11:55:54 GMT + - Tue, 11 May 2021 07:25:48 GMT expires: - '-1' pragma: @@ -1246,7 +1379,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -1266,24 +1399,24 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest2?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T11:47:16Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:53:01.2576029Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-10T03:52:51Z","recoveryPointCount":12,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:52:12Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1753' + - '1751' content-type: - application/json date: - - Tue, 12 Jan 2021 11:55:55 GMT + - Tue, 11 May 2021 07:25:49 GMT expires: - '-1' pragma: @@ -1319,26 +1452,24 @@ interactions: ParameterSetName: - --vault-name -g --restore-mode --item-name --container-name --rp-name User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/35418445464598?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest2/recoveryPoints/506716423694513?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/recoveryPoints/35418445464598","name":"35418445464598","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-01-12T11:47:16Z","dataDirectoryPaths":[{"type":"Data","path":"C:\\Program - Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBData.mdf","logicalName":"MSDBData"},{"type":"Log","path":"C:\\Program - Files\\Microsoft SQL Server\\MSSQL14.MSSQLSERVER\\MSSQL\\DATA\\MSDBLog.ldf","logicalName":"MSDBLog"}]},"recoveryPointTimeInUTC":"2021-01-12T11:47:16Z","type":"Full"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2/recoveryPoints/506716423694513","name":"506716423694513","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-05-11T03:52:44Z","dataDirectoryPaths":[{"type":"Data","path":"F:\\data\\sqltest2.mdf","logicalName":"sqltest2"},{"type":"Log","path":"G:\\log\\sqltest2_log.ldf","logicalName":"sqltest2_log"}]},"recoveryPointTimeInUTC":"2021-05-11T03:52:44Z","type":"Full"}}' headers: cache-control: - no-cache content-length: - - '914' + - '784' content-type: - application/json date: - - Tue, 12 Jan 2021 11:55:56 GMT + - Tue, 11 May 2021 07:25:51 GMT expires: - '-1' pragma: @@ -1354,7 +1485,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -1380,28 +1511,28 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb/recoveryPoints/35418445464598/restore?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest2/recoveryPoints/506716423694513/restore?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationsStatus/d5c62156-3410-49ab-8a3d-d16059ee8996?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2/operationsStatus/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 12 Jan 2021 11:55:57 GMT + - Tue, 11 May 2021 07:25:53 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb/operationResults/d5c62156-3410-49ab-8a3d-d16059ee8996?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2/operationResults/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -1409,7 +1540,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -1429,15 +1560,15 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/d5c62156-3410-49ab-8a3d-d16059ee8996?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"d5c62156-3410-49ab-8a3d-d16059ee8996","name":"d5c62156-3410-49ab-8a3d-d16059ee8996","status":"Succeeded","startTime":"2021-01-12T11:55:57.9554233Z","endTime":"2021-01-12T11:55:57.9554233Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"97dd36c8-4561-4536-9699-2d66bffbf00e"}}' + string: '{"id":"a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","status":"Succeeded","startTime":"2021-05-11T07:25:53.8304865Z","endTime":"2021-05-11T07:25:53.8304865Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a14335a5-9711-42ce-83c0-aff011270b5c"}}' headers: cache-control: - no-cache @@ -1446,7 +1577,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 11:55:58 GMT + - Tue, 11 May 2021 07:25:54 GMT expires: - '-1' pragma: @@ -1462,7 +1593,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '86' + - '149' x-powered-by: - ASP.NET status: @@ -1482,27 +1613,27 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.1782466S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1.6799665S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:25:53.8304865Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '801' + - '794' content-type: - application/json date: - - Tue, 12 Jan 2021 11:55:59 GMT + - Tue, 11 May 2021 07:25:55 GMT expires: - '-1' pragma: @@ -1539,27 +1670,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.6850677S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.3613262S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:25:53.8304865Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '801' + - '794' content-type: - application/json date: - - Tue, 12 Jan 2021 11:55:59 GMT + - Tue, 11 May 2021 07:25:56 GMT expires: - '-1' pragma: @@ -1596,27 +1727,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2.9107233S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.8061897S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:25:53.8304865Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '801' + - '794' content-type: - application/json date: - - Tue, 12 Jan 2021 11:55:59 GMT + - Tue, 11 May 2021 07:25:56 GMT expires: - '-1' pragma: @@ -1653,27 +1784,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.1776219S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT34.2596256S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:25:53.8304865Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '802' + - '795' content-type: - application/json date: - - Tue, 12 Jan 2021 11:56:31 GMT + - Tue, 11 May 2021 07:26:28 GMT expires: - '-1' pragma: @@ -1710,27 +1841,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M3.4482382S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M4.6829254S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:25:53.8304865Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '803' + - '796' content-type: - application/json date: - - Tue, 12 Jan 2021 11:57:01 GMT + - Tue, 11 May 2021 07:26:58 GMT expires: - '-1' pragma: @@ -1767,27 +1898,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M33.7416509S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M36.235715S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:25:53.8304865Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '804' + - '796' content-type: - application/json date: - - Tue, 12 Jan 2021 11:57:30 GMT + - Tue, 11 May 2021 07:27:29 GMT expires: - '-1' pragma: @@ -1824,27 +1955,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M4.0373848S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M6.6411705S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:25:53.8304865Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '803' + - '796' content-type: - application/json date: - - Tue, 12 Jan 2021 11:58:01 GMT + - Tue, 11 May 2021 07:27:59 GMT expires: - '-1' pragma: @@ -1881,27 +2012,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M34.276425S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M37.0248071S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:25:53.8304865Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '803' + - '797' content-type: - application/json date: - - Tue, 12 Jan 2021 11:58:31 GMT + - Tue, 11 May 2021 07:28:30 GMT expires: - '-1' pragma: @@ -1938,27 +2069,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M4.5451025S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M7.5094242S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:25:53.8304865Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '803' + - '796' content-type: - application/json date: - - Tue, 12 Jan 2021 11:59:02 GMT + - Tue, 11 May 2021 07:29:00 GMT expires: - '-1' pragma: @@ -1995,27 +2126,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M35.09641S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M37.9099038S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:25:53.8304865Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '802' + - '797' content-type: - application/json date: - - Tue, 12 Jan 2021 11:59:33 GMT + - Tue, 11 May 2021 07:29:31 GMT expires: - '-1' pragma: @@ -2052,27 +2183,27 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M5.6773628S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M8.309592S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Recovery - to the original database"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T11:55:57.9554233Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + to the original database"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:25:53.8304865Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '803' + - '795' content-type: - application/json date: - - Tue, 12 Jan 2021 12:00:02 GMT + - Tue, 11 May 2021 07:30:01 GMT expires: - '-1' pragma: @@ -2109,28 +2240,28 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/97dd36c8-4561-4536-9699-2d66bffbf00e","name":"97dd36c8-4561-4536-9699-2d66bffbf00e","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M33.8292537S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/a14335a5-9711-42ce-83c0-aff011270b5c","name":"a14335a5-9711-42ce-83c0-aff011270b5c","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT4M32.647357S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"20.1147","Job Type":"Recovery to the original database","RestoreRecoveryPointTime":"2021-01-12 - 11:47:16Z","RestoreDestination":"sarathvm/MSSQLSERVER/msdb"}},"isUserTriggered":true,"entityFriendlyName":"msdb - [sarathvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-01-12T11:55:57.9554233Z","endTime":"2021-01-12T12:00:31.784677Z","activityId":"219b676a-54cd-11eb-aa41-c8f750f92764"}}' + MB)":"20.0845","Job Type":"Recovery to the original database","RestoreRecoveryPointTime":"2021-05-11 + 03:52:44Z","RestoreDestination":"sqlvm/MSSQLSERVER/sqltest2"}},"isUserTriggered":true,"entityFriendlyName":"sqltest2 + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-05-11T07:25:53.8304865Z","endTime":"2021-05-11T07:30:26.4778435Z","activityId":"1d41bd14-b22a-11eb-9a1c-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '985' + - '979' content-type: - application/json date: - - Tue, 12 Jan 2021 12:00:33 GMT + - Tue, 11 May 2021 07:30:32 GMT expires: - '-1' pragma: @@ -2167,24 +2298,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bsarath-rg%3Bsarathvm/protectedItems/sqldatabase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/sqldatabase%3Bmssqlserver%3Bsqltest2?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;sarath-rg;sarathvm/protectedItems/SQLDataBase;mssqlserver;msdb","name":"SQLDataBase;mssqlserver;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sarathvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T11:48:04.459702Z","protectedItemDataSourceId":"70369414519909","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-01-12T11:27:59Z","recoveryPointCount":2,"policyState":"Consistent","recoveryModel":"SIMPLE"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;sarath-rg;sarathvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.Compute/virtualMachines/sarathvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T11:47:16Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:53:01.2576029Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-10T03:52:51Z","recoveryPointCount":12,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:52:12Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1753' + - '1751' content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:05 GMT + - Tue, 11 May 2021 07:31:04 GMT expires: - '-1' pragma: @@ -2222,28 +2353,28 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: DELETE - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bsarath-rg%3Bsarathvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bmsdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest2?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 12 Jan 2021 12:01:06 GMT + - Tue, 11 May 2021 07:31:06 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperationResults/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperationResults/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -2271,15 +2402,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2288,7 +2419,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:07 GMT + - Tue, 11 May 2021 07:31:07 GMT expires: - '-1' pragma: @@ -2324,15 +2455,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2341,7 +2472,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:08 GMT + - Tue, 11 May 2021 07:31:09 GMT expires: - '-1' pragma: @@ -2377,15 +2508,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2394,7 +2525,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:09 GMT + - Tue, 11 May 2021 07:31:10 GMT expires: - '-1' pragma: @@ -2430,15 +2561,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2447,7 +2578,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:11 GMT + - Tue, 11 May 2021 07:31:11 GMT expires: - '-1' pragma: @@ -2483,15 +2614,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2500,7 +2631,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:12 GMT + - Tue, 11 May 2021 07:31:13 GMT expires: - '-1' pragma: @@ -2536,15 +2667,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2553,7 +2684,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:13 GMT + - Tue, 11 May 2021 07:31:14 GMT expires: - '-1' pragma: @@ -2589,15 +2720,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2606,7 +2737,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:14 GMT + - Tue, 11 May 2021 07:31:16 GMT expires: - '-1' pragma: @@ -2642,15 +2773,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2659,7 +2790,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:15 GMT + - Tue, 11 May 2021 07:31:17 GMT expires: - '-1' pragma: @@ -2695,15 +2826,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2712,7 +2843,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:17 GMT + - Tue, 11 May 2021 07:31:18 GMT expires: - '-1' pragma: @@ -2748,15 +2879,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2765,7 +2896,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:18 GMT + - Tue, 11 May 2021 07:31:20 GMT expires: - '-1' pragma: @@ -2801,15 +2932,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2818,7 +2949,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:19 GMT + - Tue, 11 May 2021 07:31:21 GMT expires: - '-1' pragma: @@ -2854,15 +2985,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2871,7 +3002,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:20 GMT + - Tue, 11 May 2021 07:31:24 GMT expires: - '-1' pragma: @@ -2907,15 +3038,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2924,7 +3055,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:21 GMT + - Tue, 11 May 2021 07:31:25 GMT expires: - '-1' pragma: @@ -2960,15 +3091,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -2977,7 +3108,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:23 GMT + - Tue, 11 May 2021 07:31:27 GMT expires: - '-1' pragma: @@ -3013,15 +3144,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3030,7 +3161,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:25 GMT + - Tue, 11 May 2021 07:31:28 GMT expires: - '-1' pragma: @@ -3066,15 +3197,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3083,7 +3214,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:26 GMT + - Tue, 11 May 2021 07:31:29 GMT expires: - '-1' pragma: @@ -3119,15 +3250,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3136,7 +3267,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:27 GMT + - Tue, 11 May 2021 07:31:31 GMT expires: - '-1' pragma: @@ -3172,15 +3303,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3189,7 +3320,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:28 GMT + - Tue, 11 May 2021 07:31:32 GMT expires: - '-1' pragma: @@ -3225,15 +3356,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3242,7 +3373,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:29 GMT + - Tue, 11 May 2021 07:31:34 GMT expires: - '-1' pragma: @@ -3278,15 +3409,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3295,7 +3426,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:30 GMT + - Tue, 11 May 2021 07:31:35 GMT expires: - '-1' pragma: @@ -3331,15 +3462,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3348,7 +3479,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:31 GMT + - Tue, 11 May 2021 07:31:36 GMT expires: - '-1' pragma: @@ -3384,15 +3515,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3401,7 +3532,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:33 GMT + - Tue, 11 May 2021 07:31:38 GMT expires: - '-1' pragma: @@ -3437,15 +3568,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3454,7 +3585,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:35 GMT + - Tue, 11 May 2021 07:31:39 GMT expires: - '-1' pragma: @@ -3490,15 +3621,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3507,7 +3638,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:36 GMT + - Tue, 11 May 2021 07:31:41 GMT expires: - '-1' pragma: @@ -3543,15 +3674,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3560,7 +3691,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:37 GMT + - Tue, 11 May 2021 07:31:42 GMT expires: - '-1' pragma: @@ -3596,15 +3727,15 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"InProgress","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"0001-01-01T00:00:00"}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache @@ -3613,7 +3744,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:38 GMT + - Tue, 11 May 2021 07:31:43 GMT expires: - '-1' pragma: @@ -3649,24 +3780,24 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupOperations/606a17fd-2044-4f59-af71-2fb75b1b1e45?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"606a17fd-2044-4f59-af71-2fb75b1b1e45","name":"606a17fd-2044-4f59-af71-2fb75b1b1e45","status":"Succeeded","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"2021-01-12T12:01:06.4411789Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"a5d09b3e-fb90-4434-85bc-d944a7ac4298"}}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '304' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:39 GMT + - Tue, 11 May 2021 07:31:45 GMT expires: - '-1' pragma: @@ -3702,30 +3833,82 @@ interactions: ParameterSetName: - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a5d09b3e-fb90-4434-85bc-d944a7ac4298?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sarath-rg/providers/Microsoft.RecoveryServices/vaults/sarath-vault/backupJobs/a5d09b3e-fb90-4434-85bc-d944a7ac4298","name":"a5d09b3e-fb90-4434-85bc-d944a7ac4298","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT32.7835908S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"msdb","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2021-01-12T12:01:06.4411789Z","endTime":"2021-01-12T12:01:39.2247697Z","activityId":"d8941586-54cd-11eb-b8f6-c8f750f92764"}}' + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' headers: cache-control: - no-cache content-length: - - '717' + - '188' content-type: - application/json date: - - Tue, 12 Jan 2021 12:01:40 GMT + - Tue, 11 May 2021 07:31:46 GMT expires: - '-1' pragma: - no-cache server: - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '122' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:31:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains @@ -3736,7 +3919,1916 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '121' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:31:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '120' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:31:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '119' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:31:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '118' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:31:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '117' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:31:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '116' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:31:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '115' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:31:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '114' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:31:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '113' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '112' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '111' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '110' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '109' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '108' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '107' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '106' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '105' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '104' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '103' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '102' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '101' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '100' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '98' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '97' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '96' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '95' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '94' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '93' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '92' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '91' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07: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-ms-ratelimit-remaining-subscription-resource-requests: + - '90' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07: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-ms-ratelimit-remaining-subscription-resource-requests: + - '89' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07: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-ms-ratelimit-remaining-subscription-resource-requests: + - '88' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"InProgress","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"0001-01-01T00:00:00"}' + headers: + cache-control: + - no-cache + content-length: + - '188' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '87' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/951a8717-6c82-4cf0-a8e8-c4a24196e9f4?api-version=2020-10-01 + response: + body: + string: '{"id":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","name":"951a8717-6c82-4cf0-a8e8-c4a24196e9f4","status":"Succeeded","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"2021-05-11T07:31:06.3072361Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"13b2e66d-294a-4619-b088-a90444da6177"}}' + headers: + cache-control: + - no-cache + content-length: + - '304' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '86' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - backup protection disable + Connection: + - keep-alive + ParameterSetName: + - -v -g -c --backup-management-type --workload-type -i -y --delete-backup-data + User-Agent: + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/13b2e66d-294a-4619-b088-a90444da6177?api-version=2020-10-01 + response: + body: + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/13b2e66d-294a-4619-b088-a90444da6177","name":"13b2e66d-294a-4619-b088-a90444da6177","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M32.5614319S","extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"sqltest2","backupManagementType":"AzureWorkload","operation":"DeleteBackupData","status":"Completed","startTime":"2021-05-11T07:31:06.3072361Z","endTime":"2021-05-11T07:32:38.868668Z","activityId":"d64fe666-b22a-11eb-8183-b07b250bf939"}}' + headers: + cache-control: + - no-cache + content-length: + - '714' + content-type: + - application/json + date: + - Tue, 11 May 2021 07:32:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '149' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore_as_files.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore_as_files.yaml index 2c7cc55a340..94f240d3644 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore_as_files.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_restore_as_files.yaml @@ -13,24 +13,24 @@ interactions: ParameterSetName: - -n -v -g --backup-management-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;iaasvmsqlworkload.existing;iaassqlext-win","name":"VMAppContainer;Compute;iaasvmsqlworkload.existing;iaassqlext-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","lastUpdatedTime":"2018-08-24T08:51:53.6746573Z","extendedInfo":{"hostServerName":"iaassqlext-win","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":33,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"iaassqlext-win","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":9,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '1221' + - '1061' content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:26 GMT + - Tue, 11 May 2021 07:44:16 GMT expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: ParameterSetName: - -g -v -c -n --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T08:40:59.0952983Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-12-05T16:40:11Z","recoveryPointCount":943,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T08:40:11Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest","name":"SQLDataBase;mssqlserver;sqltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:55:59.5945638Z","protectedItemDataSourceId":"369436961546352","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-10T03:55:43Z","recoveryPointCount":12,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:55:11Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1947' + - '1596' content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:28 GMT + - Tue, 11 May 2021 07:44:18 GMT expires: - '-1' pragma: @@ -119,24 +119,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T08:40:59.0952983Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-12-05T16:40:11Z","recoveryPointCount":943,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T08:40:11Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest","name":"SQLDataBase;mssqlserver;sqltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:55:59.5945638Z","protectedItemDataSourceId":"369436961546352","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-10T03:55:43Z","recoveryPointCount":12,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:55:11Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1947' + - '1596' content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:29 GMT + - Tue, 11 May 2021 07:44:18 GMT expires: - '-1' pragma: @@ -152,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -172,24 +172,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2/recoveryPoints?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/12230670840325","name":"12230670840325","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-11T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/8367542389989","name":"8367542389989","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-10T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/11392636916547","name":"11392636916547","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-09T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/17533383867453","name":"17533383867453","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-08T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/17423561477632","name":"17423561477632","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-07T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/13279583030592","name":"13279583030592","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-06T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/5267075391197","name":"5267075391197","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-05T17:03:55Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/11102078846944","name":"11102078846944","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-04T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/6434010632366","name":"6434010632366","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-03T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/8513974938900","name":"8513974938900","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-02T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/7431236845536","name":"7431236845536","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-01-01T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/7707905291377","name":"7707905291377","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-31T17:03:55Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/681061724633","name":"681061724633","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-30T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/5630557797112","name":"5630557797112","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-29T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/2715259924455","name":"2715259924455","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-28T17:03:55Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/11456243954603","name":"11456243954603","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-27T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/1223665029855","name":"1223665029855","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-26T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/7025554519959","name":"7025554519959","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-25T17:03:55Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/4228728185136","name":"4228728185136","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-24T17:03:55Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/4863330969755","name":"4863330969755","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-23T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/12596403200681","name":"12596403200681","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-22T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/5037183837960","name":"5037183837960","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-21T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/10363389243884","name":"10363389243884","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-20T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/6143390996733","name":"6143390996733","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-19T17:03:56Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/1226646340662","name":"1226646340662","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-18T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/9895190829017","name":"9895190829017","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-17T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/3772724239813","name":"3772724239813","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-16T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/12381916150045","name":"12381916150045","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-15T17:03:55Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/10330260876606","name":"10330260876606","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-14T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/415274538680","name":"415274538680","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-13T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/6934416373366","name":"6934416373366","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-12T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/8374186160037","name":"8374186160037","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-11T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/5212182809631","name":"5212182809631","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-10T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/6117274419023","name":"6117274419023","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-09T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/3507370923225","name":"3507370923225","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-08T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/9980050147452","name":"9980050147452","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-07T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/7853863498617","name":"7853863498617","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-06T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/12719792808436","name":"12719792808436","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2020-12-05T17:03:54Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[{"startTime":"2020-12-13T09:30:30.6092682Z","endTime":"2021-01-12T08:40:11Z"}],"type":"Log"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest/recoveryPoints/509357296932186","name":"509357296932186","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-11T03:55:42Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest/recoveryPoints/498946553353386","name":"498946553353386","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","recoveryPointTimeInUTC":"2021-05-10T03:55:43Z","type":"Full"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[{"startTime":"2021-05-11T03:55:39Z","endTime":"2021-05-11T06:55:11Z"},{"startTime":"2021-05-10T03:55:41Z","endTime":"2021-05-10T10:55:11Z"}],"type":"Log"}}]}' headers: cache-control: - no-cache content-length: - - '24680' + - '1780' content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:29 GMT + - Tue, 11 May 2021 07:44:20 GMT expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;iaasvmsqlworkload.existing;iaassqlext-win","name":"VMAppContainer;Compute;iaasvmsqlworkload.existing;iaassqlext-win","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","lastUpdatedTime":"2018-08-24T08:51:53.6746573Z","extendedInfo":{"hostServerName":"iaassqlext-win","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":33,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"iaassqlext-win","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":9,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}' headers: cache-control: - no-cache content-length: - - '1221' + - '1061' content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:30 GMT + - Tue, 11 May 2021 07:44:21 GMT expires: - '-1' pragma: @@ -280,24 +280,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T08:40:59.0952983Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-12-05T16:40:11Z","recoveryPointCount":943,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T08:40:11Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest","name":"SQLDataBase;mssqlserver;sqltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:55:59.5945638Z","protectedItemDataSourceId":"369436961546352","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-10T03:55:43Z","recoveryPointCount":12,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:55:11Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1947' + - '1596' content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:32 GMT + - Tue, 11 May 2021 07:44:22 GMT expires: - '-1' pragma: @@ -313,7 +313,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -334,24 +334,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2","name":"SQLDataBase;mssqlserver;navigate-testdb2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"navigate-testdb2","serverName":"iaassqlext-win","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-01-12T08:40:59.0952983Z","protectedItemDataSourceId":"1622960563","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2020-12-05T16:40:11Z","recoveryPointCount":943,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing/providers/Microsoft.Compute/virtualMachines/iaassqlext-win","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-01-12T08:40:11Z"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest","name":"SQLDataBase;mssqlserver;sqltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-11T06:55:59.5945638Z","protectedItemDataSourceId":"369436961546352","protectedItemHealthStatus":"Healthy","extendedInfo":{"oldestRecoveryPoint":"2021-05-10T03:55:43Z","recoveryPointCount":12,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","lastRecoveryPoint":"2021-05-11T06:55:11Z","isArchiveEnabled":false}}' headers: cache-control: - no-cache content-length: - - '1947' + - '1596' content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:33 GMT + - Tue, 11 May 2021 07:44:24 GMT expires: - '-1' pragma: @@ -367,7 +367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -388,24 +388,24 @@ interactions: - --vault-name -g --restore-mode --rp-name --filepath --target-container-name --item-name --container-name --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2/recoveryPoints/12230670840325?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest/recoveryPoints/509357296932186?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/recoveryPoints/12230670840325","name":"12230670840325","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-01-11T17:03:54Z","dataDirectoryPaths":[{"type":"Data","path":"F:\\Data\\navigate-testdb2.mdf","logicalName":"navigate-testdb2"},{"type":"Log","path":"F:\\Log\\navigate-testdb2_log.ldf","logicalName":"navigate-testdb2_log"}]},"recoveryPointTimeInUTC":"2021-01-11T17:03:54Z","type":"Full"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest/recoveryPoints/509357296932186","name":"509357296932186","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLRecoveryPoint","extendedInfo":{"dataDirectoryTimeInUTC":"2021-05-11T03:55:42Z","dataDirectoryPaths":[{"type":"Data","path":"F:\\data\\sqltest.mdf","logicalName":"sqltest"},{"type":"Log","path":"G:\\log\\sqltest_log.ldf","logicalName":"sqltest_log"}]},"recoveryPointTimeInUTC":"2021-05-11T03:55:42Z","type":"Full"}}' headers: cache-control: - no-cache content-length: - - '903' + - '779' content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:34 GMT + - Tue, 11 May 2021 07:44:26 GMT expires: - '-1' pragma: @@ -430,7 +430,7 @@ interactions: - request: body: '{"properties": {"objectType": "AzureWorkloadSQLRestoreRequest", "recoveryType": "AlternateLocation", "targetInfo": {"overwriteOption": "Overwrite", "containerId": - "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;iaasvmsqlworkload.existing;iaassqlext-win", + "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm", "targetDirectoryForFileRestore": "C:"}, "recoveryMode": "FileRecovery", "shouldUseAlternateTargetLocation": true, "isNonRecoverable": false}}' headers: @@ -443,34 +443,34 @@ interactions: Connection: - keep-alive Content-Length: - - '590' + - '509' Content-Type: - application/json; charset=utf-8 ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: POST - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Biaasvmsqlworkload.existing%3Biaassqlext-win/protectedItems/SQLDataBase%3Bmssqlserver%3Bnavigate-testdb2/recoveryPoints/12230670840325/restore?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest/recoveryPoints/509357296932186/restore?api-version=2020-10-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/operationsStatus/308d0e9a-f742-47ee-99d7-4ad2635a8f3b?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest/operationsStatus/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 12 Jan 2021 09:30:34 GMT + - Tue, 11 May 2021 07:44:27 GMT expires: - '-1' location: - - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win/protectedItems/SQLDataBase;mssqlserver;navigate-testdb2/operationResults/308d0e9a-f742-47ee-99d7-4ad2635a8f3b?api-version=2020-10-01 + - https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest/operationResults/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 pragma: - no-cache strict-transport-security: @@ -478,7 +478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1192' x-powered-by: - ASP.NET status: @@ -498,68 +498,15 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupOperations/308d0e9a-f742-47ee-99d7-4ad2635a8f3b?api-version=2020-10-01 - response: - body: - string: '{"id":"308d0e9a-f742-47ee-99d7-4ad2635a8f3b","name":"308d0e9a-f742-47ee-99d7-4ad2635a8f3b","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","endTime":"0001-01-01T00:00:00"}' - headers: - cache-control: - - no-cache - content-length: - - '188' - content-type: - - application/json - date: - - Tue, 12 Jan 2021 09:30:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - backup restore restore-azurewl - Connection: - - keep-alive - ParameterSetName: - - --vault-name -g --recovery-config - User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupOperations/308d0e9a-f742-47ee-99d7-4ad2635a8f3b?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupOperations/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 response: body: - string: '{"id":"308d0e9a-f742-47ee-99d7-4ad2635a8f3b","name":"308d0e9a-f742-47ee-99d7-4ad2635a8f3b","status":"Succeeded","startTime":"2021-01-12T09:30:34.7378037Z","endTime":"2021-01-12T09:30:34.7378037Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"b58b7c4f-3678-4670-ac4e-66af30cb1521"}}' + string: '{"id":"189c40ae-c32a-487a-89a5-f8450d94ab59","name":"189c40ae-c32a-487a-89a5-f8450d94ab59","status":"Succeeded","startTime":"2021-05-11T07:44:27.8480836Z","endTime":"2021-05-11T07:44:27.8480836Z","properties":{"objectType":"OperationStatusJobExtendedInfo","jobId":"189c40ae-c32a-487a-89a5-f8450d94ab59"}}' headers: cache-control: - no-cache @@ -568,7 +515,7 @@ interactions: content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:36 GMT + - Tue, 11 May 2021 07:44:28 GMT expires: - '-1' pragma: @@ -584,7 +531,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '148' + - '149' x-powered-by: - ASP.NET status: @@ -604,24 +551,26 @@ interactions: ParameterSetName: - --vault-name -g --recovery-config User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","duration":"PT2.6774647S","actionsInfo":[1],"extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59","name":"189c40ae-c32a-487a-89a5-f8450d94ab59","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3.362163S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore + as files"}},"isUserTriggered":true,"entityFriendlyName":"sqltest [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:44:27.8480836Z","activityId":"b5be6b88-b22c-11eb-86b4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '711' + - '775' content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:37 GMT + - Tue, 11 May 2021 07:44:31 GMT expires: - '-1' pragma: @@ -638,7 +587,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -658,24 +607,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","duration":"PT3.0373271S","actionsInfo":[1],"extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59","name":"189c40ae-c32a-487a-89a5-f8450d94ab59","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT5.1078872S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore + as files"}},"isUserTriggered":true,"entityFriendlyName":"sqltest [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:44:27.8480836Z","activityId":"b5be6b88-b22c-11eb-86b4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '711' + - '776' content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:37 GMT + - Tue, 11 May 2021 07:44:32 GMT expires: - '-1' pragma: @@ -712,24 +663,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","duration":"PT3.3018788S","actionsInfo":[1],"extendedInfo":{"tasksList":[],"propertyBag":{}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59","name":"189c40ae-c32a-487a-89a5-f8450d94ab59","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT5.4969183S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore + as files"}},"isUserTriggered":true,"entityFriendlyName":"sqltest [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:44:27.8480836Z","activityId":"b5be6b88-b22c-11eb-86b4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '711' + - '776' content-type: - application/json date: - - Tue, 12 Jan 2021 09:30:37 GMT + - Tue, 11 May 2021 07:44:33 GMT expires: - '-1' pragma: @@ -766,27 +719,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT33.6207049S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59","name":"189c40ae-c32a-487a-89a5-f8450d94ab59","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT35.9467759S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' + as files"}},"isUserTriggered":true,"entityFriendlyName":"sqltest [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:44:27.8480836Z","activityId":"b5be6b88-b22c-11eb-86b4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '846' + - '777' content-type: - application/json date: - - Tue, 12 Jan 2021 09:31:07 GMT + - Tue, 11 May 2021 07:45:03 GMT expires: - '-1' pragma: @@ -823,27 +775,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M3.8336259S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59","name":"189c40ae-c32a-487a-89a5-f8450d94ab59","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M6.4065205S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' + as files"}},"isUserTriggered":true,"entityFriendlyName":"sqltest [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:44:27.8480836Z","activityId":"b5be6b88-b22c-11eb-86b4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '847' + - '778' content-type: - application/json date: - - Tue, 12 Jan 2021 09:31:37 GMT + - Tue, 11 May 2021 07:45:33 GMT expires: - '-1' pragma: @@ -880,27 +831,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M34.0521158S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59","name":"189c40ae-c32a-487a-89a5-f8450d94ab59","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT1M36.8038953S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' + as files"}},"isUserTriggered":true,"entityFriendlyName":"sqltest [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:44:27.8480836Z","activityId":"b5be6b88-b22c-11eb-86b4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '848' + - '779' content-type: - application/json date: - - Tue, 12 Jan 2021 09:32:08 GMT + - Tue, 11 May 2021 07:46:03 GMT expires: - '-1' pragma: @@ -937,27 +887,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M4.2960942S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59","name":"189c40ae-c32a-487a-89a5-f8450d94ab59","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M7.196939S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' + as files"}},"isUserTriggered":true,"entityFriendlyName":"sqltest [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:44:27.8480836Z","activityId":"b5be6b88-b22c-11eb-86b4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '847' + - '777' content-type: - application/json date: - - Tue, 12 Jan 2021 09:32:38 GMT + - Tue, 11 May 2021 07:46:34 GMT expires: - '-1' pragma: @@ -994,27 +943,26 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M34.5262895S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59","name":"189c40ae-c32a-487a-89a5-f8450d94ab59","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT2M37.6224669S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"InProgress"}],"propertyBag":{"Job Type":"Restore - as files"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-01-12T09:30:34.7378037Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' + as files"}},"isUserTriggered":true,"entityFriendlyName":"sqltest [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore","status":"InProgress","startTime":"2021-05-11T07:44:27.8480836Z","activityId":"b5be6b88-b22c-11eb-86b4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '848' + - '779' content-type: - application/json date: - - Tue, 12 Jan 2021 09:33:08 GMT + - Tue, 11 May 2021 07:47:05 GMT expires: - '-1' pragma: @@ -1051,29 +999,28 @@ interactions: ParameterSetName: - -v -g -n User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59?api-version=2020-10-01 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iaasvmsqlworkload.existing.vaults/providers/Microsoft.RecoveryServices/vaults/iaasvmsqlworkloadexistingvault1/backupJobs/b58b7c4f-3678-4670-ac4e-66af30cb1521","name":"b58b7c4f-3678-4670-ac4e-66af30cb1521","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M3.350806S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer + string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupJobs/189c40ae-c32a-487a-89a5-f8450d94ab59","name":"189c40ae-c32a-487a-89a5-f8450d94ab59","type":"Microsoft.RecoveryServices/vaults/backupJobs","properties":{"jobType":"AzureWorkloadJob","workloadType":"SQLDataBase","duration":"PT3M4.5259662S","actionsInfo":[1],"extendedInfo":{"tasksList":[{"taskId":"Transfer data from vault","status":"Completed"}],"propertyBag":{"Data Transferred (in - MB)":"4.0825","Job Type":"Restore as files","RestoreRecoveryPointTime":"2021-01-11 - 17:03:54Z","RestoreDestination":"C:"}},"isUserTriggered":true,"entityFriendlyName":"navigate-testdb2 - [iaassqlext-win]","backupManagementType":"AzureWorkload","operation":"Restore - (Full)","status":"Completed","startTime":"2021-01-12T09:30:34.7378037Z","endTime":"2021-01-12T09:33:38.0886097Z","activityId":"d22bc7ea-54b8-11eb-a40e-c8f750f92764"}}' + MB)":"20.0845","Job Type":"Restore as files","RestoreRecoveryPointTime":"2021-05-11 + 03:55:42Z","RestoreDestination":"C:"}},"isUserTriggered":true,"entityFriendlyName":"sqltest + [sqlvm]","backupManagementType":"AzureWorkload","operation":"Restore (Full)","status":"Completed","startTime":"2021-05-11T07:44:27.8480836Z","endTime":"2021-05-11T07:47:32.3740498Z","activityId":"b5be6b88-b22c-11eb-86b4-b07b250bf939"}}' headers: cache-control: - no-cache content-length: - - '1004' + - '937' content-type: - application/json date: - - Tue, 12 Jan 2021 09:33:39 GMT + - Tue, 11 May 2021 07:47:35 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml index 95dfd9d8fc0..ede408436d5 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/recordings/test_backup_wl_sql_rp.yaml @@ -13,40 +13,24 @@ interactions: ParameterSetName: - -v -g --backup-management-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectionContainers?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20status%20eq%20%27Registered%27 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8895","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8895","lastUpdatedTime":"2019-10-30T12:06:54.5910168Z","extendedInfo":{"hostServerName":"pstestvm8895","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8895","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestvm8896","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestvm8896","lastUpdatedTime":"2019-10-31T05:49:36.6718285Z","extendedInfo":{"hostServerName":"pstestvm8896","inquiryInfo":{"status":"Success","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"inquiryDetails":[{"type":"SQL","itemCount":0,"inquiryValidation":{"status":"Failed","errorDetail":{"code":"UserErrorOpeningSQLConnection","message":"Azure - Backup service is not able to connect to the SQL instance.","recommendations":["Please - refer to the general troubleshooting information about SQL connection failures. - For troubleshooting instructions, see https://aka.ms/AB-usererroropeningsqlconnection"]},"additionalDetail":"SQLPlugin: - Exception while Opening SQL Connection:Data Source=.;Integrated Security=True;Pooling=True;Application - Name=AzureWorkloadBackup Exception:Login failed for user ''NT AUTHORITY\\SYSTEM''."}}]}},"friendlyName":"pstestvm8896","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Deleted","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","name":"VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","lastUpdatedTime":"2021-01-12T07:20:11.8845026Z","extendedInfo":{"hostServerName":"pstestwlvm1bca8","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":4,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"pstestwlvm1bca8","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm","name":"VMAppContainer;Compute;bksql;sqlvm","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers","properties":{"sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","lastUpdatedTime":"2021-04-29T10:02:02.4682499Z","extendedInfo":{"hostServerName":"sqlvm","inquiryInfo":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"inquiryDetails":[{"type":"SQL","itemCount":8,"inquiryValidation":{"status":"Success","errorDetail":{"code":"Success","message":"","recommendations":[""]},"additionalDetail":""}}]}},"friendlyName":"sqlvm","backupManagementType":"AzureWorkload","registrationStatus":"Registered","healthStatus":"Healthy","containerType":"VMAppContainer","protectableObjectType":"VMAppContainer"}}]}' headers: cache-control: - no-cache content-length: - - '4879' + - '1073' content-type: - application/json date: - - Tue, 12 Jan 2021 08:56:37 GMT + - Mon, 10 May 2021 09:50:07 GMT expires: - '-1' pragma: @@ -62,7 +46,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -82,27 +66,33 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb","name":"SQLDataBase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testdb","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T08:54:25.092628Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","lastBackupTime":"2021-04-30T07:12:44.7097104Z","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":"369436335590262","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;bktest1","name":"SQLDataBase;MSSQLSERVER;bktest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"bktest1","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-04-30T10:34:58.975074Z","protectedItemDataSourceId":"369436384058891","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest3","name":"SQLDataBase;mssqlserver;sqltest3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest3","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T08:55:59.4701938Z","protectedItemDataSourceId":"369436411027462","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","lastBackupTime":"2021-05-10T08:00:47.6137004Z","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":"369436722049723","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","deferredDeleteTimeInUTC":"2021-05-10T08:03:26.2026225Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.22:13:16.6654208","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T08:52:58.9301493Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest","name":"SQLDataBase;mssqlserver;sqltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T08:55:59.2453048Z","protectedItemDataSourceId":"369436961546352","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;msdb","name":"SQLDataBase;MSSQLSERVER;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"IRPending","lastBackupTime":"2021-05-10T02:54:58.9215615Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft Azure Backup encountered an internal error.","recommendations":["Wait for a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"70370422553281","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' + contact Microsoft support."]},"protectedItemDataSourceId":"369437594861959","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;model","name":"SQLDataBase;MSSQLSERVER;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"model","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T09:31:03.6018335Z","protectedItemDataSourceId":"369437840876323","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1693' + - '11806' content-type: - application/json date: - - Tue, 12 Jan 2021 08:56:37 GMT + - Mon, 10 May 2021 09:50:08 GMT expires: - '-1' pragma: @@ -118,7 +108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -138,24 +128,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type --query User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb/recoveryPoints?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest4/recoveryPoints?api-version=2020-10-01 response: body: - string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4/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: - - '590' + - '554' content-type: - application/json date: - - Tue, 12 Jan 2021 08:56:39 GMT + - Mon, 10 May 2021 09:50:09 GMT expires: - '-1' pragma: @@ -171,7 +161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '147' x-powered-by: - ASP.NET status: @@ -191,27 +181,33 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb","name":"SQLDataBase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testdb","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T08:54:25.092628Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","lastBackupTime":"2021-04-30T07:12:44.7097104Z","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":"369436335590262","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;bktest1","name":"SQLDataBase;MSSQLSERVER;bktest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"bktest1","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-04-30T10:34:58.975074Z","protectedItemDataSourceId":"369436384058891","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest3","name":"SQLDataBase;mssqlserver;sqltest3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest3","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T08:55:59.4701938Z","protectedItemDataSourceId":"369436411027462","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","lastBackupTime":"2021-05-10T08:00:47.6137004Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft Azure Backup encountered an internal error.","recommendations":["Wait for a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"70370422553281","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' + contact Microsoft support."]},"protectedItemDataSourceId":"369436722049723","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","deferredDeleteTimeInUTC":"2021-05-10T08:03:26.2026225Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.22:13:13.9020021","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T08:52:58.9301493Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest","name":"SQLDataBase;mssqlserver;sqltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T08:55:59.2453048Z","protectedItemDataSourceId":"369436961546352","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;msdb","name":"SQLDataBase;MSSQLSERVER;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"IRPending","lastBackupTime":"2021-05-10T02:54:58.9215615Z","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":"369437594861959","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;model","name":"SQLDataBase;MSSQLSERVER;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"model","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T09:31:03.6018335Z","protectedItemDataSourceId":"369437840876323","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1693' + - '11806' content-type: - application/json date: - - Tue, 12 Jan 2021 08:56:40 GMT + - Mon, 10 May 2021 09:50:12 GMT expires: - '-1' pragma: @@ -247,24 +243,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb/recoveryPoints?api-version=2020-10-01&$filter=restorePointQueryType%20eq%20%27Log%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest4/recoveryPoints?api-version=2020-10-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;testdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4/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: - - '590' + - '554' content-type: - application/json date: - - Tue, 12 Jan 2021 08:56:41 GMT + - Mon, 10 May 2021 09:50:13 GMT expires: - '-1' pragma: @@ -280,7 +276,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: @@ -300,27 +296,33 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3BCompute%3BpstestwlRG1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3BMSSQLSERVER%3Btestdb?api-version=2020-10-01 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupProtectedItems?api-version=2020-10-01&$filter=backupManagementType%20eq%20%27AzureWorkload%27%20and%20itemType%20eq%20%27SQLDataBase%27 response: body: - string: '{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/SQLDataBase;mssqlserver;testdb","name":"SQLDataBase;mssqlserver;testdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"testdb","serverName":"pstestwlvm1bca8","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"IRPending","lastBackupStatus":"IRPending","lastBackupTime":"2021-01-12T08:54:25.092628Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;master","name":"SQLDataBase;mssqlserver;master","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"master","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","lastBackupTime":"2021-04-30T07:12:44.7097104Z","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":"369436335590262","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;bktest1","name":"SQLDataBase;MSSQLSERVER;bktest1","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"bktest1","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-04-30T10:34:58.975074Z","protectedItemDataSourceId":"369436384058891","protectedItemHealthStatus":"NotReachable","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest3","name":"SQLDataBase;mssqlserver;sqltest3","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest3","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T08:55:59.4701938Z","protectedItemDataSourceId":"369436411027462","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4","name":"SQLDataBase;mssqlserver;sqltest4","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{},"friendlyName":"sqltest4","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"ProtectionStopped","lastBackupStatus":"IRPending","lastBackupTime":"2021-05-10T08:00:47.6137004Z","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":"369436722049723","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","deferredDeleteTimeInUTC":"2021-05-10T08:03:26.2026225Z","isScheduledForDeferredDelete":true,"deferredDeleteTimeRemaining":"13.22:13:12.1788242","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest2","name":"SQLDataBase;mssqlserver;sqltest2","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest2","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T08:52:58.9301493Z","protectedItemDataSourceId":"369436844523983","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest","name":"SQLDataBase;mssqlserver;sqltest","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"sqltest","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T08:55:59.2453048Z","protectedItemDataSourceId":"369436961546352","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;msdb","name":"SQLDataBase;MSSQLSERVER;msdb","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]},"RestoreOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"msdb","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"IRPending","lastBackupTime":"2021-05-10T02:54:58.9215615Z","lastBackupErrorDetail":{"code":"CloudInternalError","message":"Microsoft Azure Backup encountered an internal error.","recommendations":["Wait for a few minutes and then try the operation again. If the issue persists, please - contact Microsoft support."]},"protectedItemDataSourceId":"70370422553281","protectedItemHealthStatus":"IRPending","extendedInfo":{"recoveryPointCount":0,"policyState":"Consistent","recoveryModel":"FULL"},"protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;compute;pstestwlrg1bca8;pstestwlvm1bca8","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupPolicies/HourlyLogBackup"}}' + contact Microsoft support."]},"protectedItemDataSourceId":"369437594861959","protectedItemHealthStatus":"IRPending","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}},{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;model","name":"SQLDataBase;MSSQLSERVER;model","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems","properties":{"kpisHealths":{"BackupOperationStatusKPI":{"resourceHealthStatus":"Healthy","resourceHealthDetails":[{"code":0,"title":"Success","message":"","recommendations":[]}]}},"friendlyName":"model","serverName":"sqlvm","parentName":"MSSQLSERVER","parentType":"AzureVmWorkloadSQLInstance","protectionStatus":"Healthy","protectionState":"Protected","lastBackupStatus":"Healthy","lastBackupTime":"2021-05-10T09:31:03.6018335Z","protectedItemDataSourceId":"369437840876323","protectedItemHealthStatus":"Healthy","protectedItemType":"AzureVmWorkloadSQLDatabase","backupManagementType":"AzureWorkload","workloadType":"SQLDataBase","containerName":"VMAppContainer;Compute;bksql;sqlvm","sourceResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm","policyId":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupPolicies/HourlyLogBackup","isArchiveEnabled":false}}]}' headers: cache-control: - no-cache content-length: - - '1693' + - '11806' content-type: - application/json date: - - Tue, 12 Jan 2021 08:56:42 GMT + - Mon, 10 May 2021 09:50:13 GMT expires: - '-1' pragma: @@ -356,24 +358,24 @@ interactions: ParameterSetName: - -g -v -c -i --workload-type User-Agent: - - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.15.1 + - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-recoveryservicesbackup/0.11.0 Azure-SDK-For-Python AZURECLI/2.22.1 accept-language: - en-US method: GET - uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pstestwlrg1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bpstestwlrg1bca8%3Bpstestwlvm1bca8/protectedItems/SQLDataBase%3Bmssqlserver%3Btestdb/recoveryPoints?api-version=2020-10-01&$filter=restorePointQueryType%20eq%20%27Log%27 + uri: https://management.azure.com/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer%3Bcompute%3Bbksql%3Bsqlvm/protectedItems/SQLDataBase%3Bmssqlserver%3Bsqltest4/recoveryPoints?api-version=2020-10-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;testdb/recoveryPoints/DefaultRangeRecoveryPoint","name":"DefaultRangeRecoveryPoint","type":"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints","properties":{"objectType":"AzureWorkloadSQLPointInTimeRecoveryPoint","timeRanges":[],"type":"Log"}}]}' + string: '{"value":[{"id":"/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;compute;bksql;sqlvm/protectedItems/SQLDataBase;mssqlserver;sqltest4/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: - - '590' + - '554' content-type: - application/json date: - - Tue, 12 Jan 2021 08:56:43 GMT + - Mon, 10 May 2021 09:50:14 GMT expires: - '-1' pragma: @@ -389,7 +391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '149' + - '148' x-powered-by: - ASP.NET status: diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py index d36b349851f..c868a38d7ca 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_afs_commands.py @@ -23,7 +23,7 @@ class BackupTests(ScenarioTest, unittest.TestCase): - @record_only() + # @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @VaultPreparer() @StorageAccountPreparer(location="southeastasia") @@ -56,7 +56,7 @@ def test_afs_backup_scenario(self, resource_group, vault_name, storage_account, self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') time.sleep(100) - @record_only() + # @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @VaultPreparer() @StorageAccountPreparer(location="southeastasia") @@ -104,7 +104,7 @@ def test_afs_backup_container(self, resource_group, vault_name, storage_account, self.cmd('backup container unregister -g {rg} -v {vault} -c {sa2} --yes --backup-management-type AzureStorage') time.sleep(100) - @record_only() + # @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @VaultPreparer() @StorageAccountPreparer(location="southeastasia") @@ -172,7 +172,7 @@ def test_afs_backup_item(self, resource_group, vault_name, storage_account, afs_ self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') time.sleep(100) - @record_only() + # @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @VaultPreparer() @StorageAccountPreparer(location="southeastasia") @@ -213,7 +213,7 @@ def test_afs_backup_rp(self, resource_group, vault_name, storage_account, afs_na self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') time.sleep(100) - @record_only() + # @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @VaultPreparer() @StorageAccountPreparer(location="southeastasia") @@ -334,7 +334,7 @@ def test_afs_backup_restore(self, resource_group, vault_name, storage_account, f self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') time.sleep(100) - @record_only() + # @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @VaultPreparer() @StorageAccountPreparer(location="southeastasia") @@ -387,7 +387,7 @@ def test_afs_backup_protection(self, resource_group, vault_name, storage_account self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') time.sleep(100) - @record_only() + # @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @VaultPreparer() @StorageAccountPreparer(location="southeastasia") @@ -444,7 +444,7 @@ def test_afs_backup_policy(self, resource_group, vault_name, storage_account, af self.cmd('backup container unregister -g {rg} -v {vault} -c {container} --yes --backup-management-type AzureStorage') time.sleep(100) - @record_only() + # @record_only() @ResourceGroupPreparer(location="southeastasia", random_name_length=20) @VaultPreparer() @StorageAccountPreparer(location="southeastasia") diff --git a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_workload_commands.py b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_workload_commands.py index 6d771f23456..100a39651c6 100644 --- a/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_workload_commands.py +++ b/src/azure-cli/azure/cli/command_modules/backup/tests/latest/test_workload_commands.py @@ -10,28 +10,28 @@ import os -id_sql = '/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.Compute/virtualMachines/pstestwlvm1bca8' +id_sql = '/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/bksql/providers/Microsoft.Compute/virtualMachines/sqlvm' id_hana = '/subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/akneema/providers/Microsoft.Compute/virtualMachines/akneema-hana-ccy' -item_id_sql = '/Subscriptions/da364f0f-307b-41c9-9d47-b7413ec45535/resourceGroups/pstestwlRG1bca8/providers/Microsoft.RecoveryServices/vaults/pstestwlRSV1bca8/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;pstestwlrg1bca8;pstestwlvm1bca8/protectedItems/sqldatabase;mssqlserver;testdb' +item_id_sql = '/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;bktest1' 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_sql = '0b1f6471-1bf0-4dda-aec3-cb9272f09590' sub_hana = 'da364f0f-307b-41c9-9d47-b7413ec45535' -rg_sql = 'pstestwlRG1bca8' +rg_sql = 'bksql' rg_hana = 'akneema' -vault_sql = 'pstestwlRSV1bca8' +vault_sql = 'sqlvault' vault_hana = 'akneema-vault-ccy' -container_sql = 'VMAppContainer;Compute;pstestwlRG1bca8;pstestwlvm1bca8' +container_sql = 'VMAppContainer;Compute;bksql;sqlvm' container_hana = 'VMAppContainer;Compute;akneema;akneema-hana-ccy' -container_friendly_sql = 'pstestwlvm1bca8' +container_friendly_sql = 'sqlvm' container_friendly_hana = 'akneema-hana-ccy' item_auto_sql = 'SQLInstance;mssqlserver' item_auto_hana = 'SAPHanaSystem;H22' -item1_sql = 'SQLDataBase;MSSQLSERVER;testdb' +item1_sql = 'SQLDataBase;MSSQLSERVER;bktest1' 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]' +backup_entity_friendly_name_sql = 'MSSQLSERVER/sqltest5' item_id_hana_2 = '/Subscriptions/e3d2d341-4ddb-4c5d-9121-69b7e719485e/resourceGroups/IDCDemo/providers/Microsoft.RecoveryServices/vaults/IDCDemoVault/backupFabrics/Azure/protectionContainers/vmappcontainer;compute;IDCDemo;HANADemoIDC3/protectedItems/SAPHanaDatabase;h22;h22_restored_sarath' @@ -49,7 +49,7 @@ def test_backup_wl_sql_container(self): 'id': id_sql }) - self.cmd('backup container register -v {vault} -g {rg} --backup-management-type AzureWorkload --workload-type {wt} --resource-id {id}') + # self.cmd('backup container 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)]) @@ -82,15 +82,13 @@ def test_backup_wl_sql_container(self): self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ self.check("length([?name == '{name}'])", 1)]) - self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') + # self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') - self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ - self.check("length([?name == '{name}'])", 0)]) + # self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + # self.check("length([?name == '{name}'])", 0)]) @record_only() - def test_backup_wl_hana_container(self, container_name1=container_hana, container_name2=container_friendly_hana, - resource_group=rg_hana, vault_name=vault_hana, workload_type='SAPHANA', - subscription=sub_hana, id=id_hana): + def test_backup_wl_hana_container(self): self.kwargs.update({ 'vault': vault_hana, @@ -102,8 +100,7 @@ def test_backup_wl_hana_container(self, container_name1=container_hana, containe 'id': id_hana }) - self.cmd('backup container register -v {vault} -g {rg} --backup-management-type AzureWorkload --workload-type {wt} --resource-id {id}') - + # self.cmd('backup container 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)]) @@ -134,11 +131,10 @@ def test_backup_wl_hana_container(self, container_name1=container_hana, containe self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ self.check("length([?name == '{name}'])", 1)]) + # self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') - self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') - - self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ - self.check("length([?name == '{name}'])", 0)]) + # self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + # self.check("length([?name == '{name}'])", 0)]) @record_only() def test_backup_wl_sql_policy(self): @@ -158,7 +154,7 @@ def test_backup_wl_sql_policy(self): 'pit': 'SQLDataBase', 'policy_new': self.create_random_name('clitest-policy', 24) }) - + self.kwargs['id'] = self.cmd('vm list --resource-group {rg} --query [0].id').get_output_in_json() self.kwargs['policy1_json'] = self.cmd('backup policy show -g {rg} -v {vault} -n {policy}', checks=[ self.check('name', '{policy}'), self.check('resourceGroup', '{rg}') @@ -262,18 +258,18 @@ def test_backup_wl_hana_policy(self): def test_backup_wl_sql_item(self): self.kwargs.update({ - 'vault': "sarath-vault", - 'name': "VMAppContainer;Compute;sarath-rg;sarathvm", - 'fname': "sarathvm", + 'vault': vault_sql, + 'name': container_sql, + 'fname': container_friendly_sql, 'policy': 'HourlyLogBackup', 'wt': 'MSSQL', 'sub': sub_sql, 'default': 'HourlyLogBackup', - 'rg': "sarath-rg", - 'item': "sqldatabase;mssqlserver;msdb", - 'fitem': "msdb", + 'rg': rg_sql, + 'item': 'sqldatabase;mssqlserver;sqltest4', + 'fitem': 'sqltest4', 'id': id_sql, - 'item_id': item_id_sql, + 'item_id': '/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;sqltest4', 'pit': 'SQLDataBase' }) @@ -292,9 +288,9 @@ def test_backup_wl_sql_item(self): self.check('resourceGroup', '{rg}') ]).get_output_in_json() - self.assertIn("sarath-vault", item1_json['id'].lower()) - self.assertIn("sarathvm", item1_json['properties']['containerName'].lower()) - self.assertIn("sarathvm", item1_json['properties']['sourceResourceId'].lower()) + self.assertIn("sqlvault", item1_json['id'].lower()) + self.assertIn("sqlvm", item1_json['properties']['containerName'].lower()) + self.assertIn("sqlvm", 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() @@ -318,17 +314,17 @@ def test_backup_wl_sql_item(self): ]) self.cmd('backup item list -g {rg} -v {vault} -c {container1} --backup-management-type AzureWorkload --workload-type SQLDataBase', checks=[ - self.check("length(@)", 3), + self.check("length(@)", 8), self.check("length([?properties.friendlyName == '{fitem}'])", 1) ]) self.cmd('backup item list -g {rg} -v {vault} -c {container1_fullname} --backup-management-type AzureWorkload --workload-type SQLDataBase', checks=[ - self.check("length(@)", 3), + self.check("length(@)", 8), self.check("length([?properties.friendlyName == '{fitem}'])", 1) ]) self.cmd('backup item list -g {rg} -v {vault} --backup-management-type AzureWorkload --workload-type SQLDataBase', checks=[ - self.check("length(@)", 3), + self.check("length(@)", 8), self.check("length([?properties.friendlyName == '{fitem}'])", 1) ]) @@ -442,15 +438,16 @@ def test_backup_wl_sql_protectable_item(self): 'sub': sub_sql, 'default': 'HourlyLogBackup', 'rg': rg_sql, - 'item': item1_sql, + 'item': 'sqldatabase;mssqlserver;sqltest4', 'id': id_sql, - 'item_id': item_id_sql, + 'item_id': '/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;sqltest4', 'pit': 'SQLDataBase', - 'protectable_item_name': 'testdb', + 'protectable_item_name1': 'MSSQLSERVER', + 'protectable_item_name2': 'msdb_restored_5_10_2021_1527', '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 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)]) @@ -458,20 +455,20 @@ def test_backup_wl_sql_protectable_item(self): self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --query properties.friendlyName --backup-management-type AzureWorkload').get_output_in_json() self.cmd('backup protectable-item list -g {rg} --vault-name {vault} --workload-type {wt}', checks=[ - self.check("length([?properties.friendlyName == '{protectable_item_name}'])", 1) + self.check("length([?properties.friendlyName == '{protectable_item_name1}'])", 1) ]) - self.cmd('backup protectable-item show -g {rg} --vault-name {vault} --name {protectable_item_name} --workload-type {wt} --protectable-item-type {pit} --server-name {fname}', checks=[ - self.check('properties.friendlyName', '{protectable_item_name}'), + self.cmd('backup protectable-item show -g {rg} --vault-name {vault} --name {protectable_item_name2} --workload-type {wt} --protectable-item-type {pit} --server-name {fname}', checks=[ + self.check('properties.friendlyName', '{protectable_item_name2}'), self.check('properties.protectableItemType', '{pit}'), self.check('properties.serverName', '{fname}'), self.check('resourceGroup', '{rg}') ]) - self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') + # self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') - self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ - self.check("length([?name == '{name}'])", 0)]) + # self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + # self.check("length([?name == '{name}'])", 0)]) @record_only() def test_backup_wl_hana_protectable_item(self): @@ -527,7 +524,7 @@ def test_backup_wl_sql_rp(self): 'policy': 'HourlyLogBackup', 'wt': 'MSSQL', 'sub': sub_sql, - 'item': item1_sql, + 'item': 'sqltest4', 'pit': 'SQLDatabase', 'item_id': item_id_sql, 'id': id_sql @@ -585,20 +582,20 @@ def test_backup_wl_hana_rp(self): def test_backup_wl_sql_protection(self): self.kwargs.update({ - 'vault': "sarath-vault", - 'name': "VMAppContainer;Compute;sarath-rg;sarathvm", - 'fname': "sarathvm", + 'vault': "sqlvault", + 'name': "VMAppContainer;Compute;bksql;sqlvm", + 'fname': "sqlvm", 'policy': 'HourlyLogBackup', 'wt': 'MSSQL', 'sub': sub_sql, 'default': 'HourlyLogBackup', - 'rg': "sarath-rg", - 'item': "sqldatabase;mssqlserver;msdb", - 'fitem': "msdb", + 'rg': rg_sql, + 'item': "sqldatabase;mssqlserver;sqltest6", + 'fitem': "sqltest6", 'id': id_sql, - 'item_id': item_id_sql, + 'item_id': '/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;sqltest6', 'pit': "SQLDataBase", - 'entityFriendlyName': 'msdb [sarathvm]' + 'entityFriendlyName': 'sqltest6' }) self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ @@ -728,7 +725,7 @@ def test_backup_wl_sql_auto_protection(self): 'entityFriendlyName': backup_entity_friendly_name_sql }) - self.cmd('backup container register -v {vault} -g {rg} --backup-management-type AzureWorkload --workload-type {wt} --resource-id {id}') + # self.cmd('backup container 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)]) @@ -737,10 +734,10 @@ def test_backup_wl_sql_auto_protection(self): self.cmd('backup protection auto-disable-for-azurewl -v {vault} -g {rg} --item-name {item}') - self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') + # self.cmd('backup container unregister -v {vault} -g {rg} -c {name} -y') - self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ - self.check("length([?name == '{name}'])", 0)]) + # self.cmd('backup container list -v {vault} -g {rg} --backup-management-type AzureWorkload', checks=[ + # self.check("length([?name == '{name}'])", 0)]) @record_only() def test_backup_wl_hana_restore(self): @@ -845,20 +842,20 @@ def test_backup_wl_hana_restore(self): @record_only() def test_backup_wl_sql_restore(self): self.kwargs.update({ - 'vault': "sarath-vault", - 'name': "VMAppContainer;Compute;sarath-rg;sarathvm", - 'fname': "sarathvm", + 'vault': "sqlvault", + 'name': "VMAppContainer;Compute;bksql;sqlvm", + 'fname': "sqlvm", 'policy': 'HourlyLogBackup', 'wt': 'MSSQL', 'sub': sub_sql, 'default': 'HourlyLogBackup', - 'rg': "sarath-rg", - 'item': "sqldatabase;mssqlserver;msdb", - 'fitem': "msdb", + 'rg': "bksql", + 'item': "sqldatabase;mssqlserver;sqltest2", + 'fitem': "sqltest2", 'id': id_sql, - 'item_id': item_id_sql, + 'item_id': '/Subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/bksql/providers/Microsoft.RecoveryServices/vaults/sqlvault/backupFabrics/Azure/protectionContainers/VMAppContainer;Compute;bksql;sqlvm/protectedItems/SQLDataBase;MSSQLSERVER;sqltest2', 'pit': 'SQLDataBase', - 'entityFriendlyName': 'msdb', + 'entityFriendlyName': 'sqltest2', 'tpit': 'SQLInstance', 'titem': 'MSSQLSERVER' }) @@ -915,12 +912,12 @@ def test_backup_wl_sql_restore(self): @record_only() def test_backup_wl_sql_restore_as_files(self): self.kwargs.update({ - 'vault': "iaasvmsqlworkloadexistingvault1", - 'name': "VMAppContainer;compute;iaasvmsqlworkload.existing;iaassqlext-win", + 'vault': "sqlvault", + 'name': "VMAppContainer;compute;bksql;sqlvm", 'wt': 'MSSQL', - 'sub': "38304e13-357e-405e-9e9a-220351dcce8c", - 'rg': "iaasvmsqlworkload.existing.vaults", - 'item': "SQLDataBase;mssqlserver;navigate-testdb2" + 'sub': "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + 'rg': "bksql", + 'item': "SQLDataBase;mssqlserver;sqltest" }) self.kwargs['container1'] = self.cmd('backup container show -n {name} -v {vault} -g {rg} --backup-management-type AzureWorkload --query name').get_output_in_json() diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index df3ad43c29a..3aa1b6b60d9 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -65,7 +65,7 @@ azure-mgmt-network==19.0.0 azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==1.0.0 azure-mgmt-rdbms==8.1.0b4 -azure-mgmt-recoveryservices==0.4.0 +azure-mgmt-recoveryservices==1.0.0 azure-mgmt-recoveryservicesbackup==0.11.0 azure-mgmt-redhatopenshift==0.1.0 azure-mgmt-redis==7.0.0rc1 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 9f50bcb7ef4..808d29e7f21 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -65,7 +65,7 @@ azure-mgmt-network==19.0.0 azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==1.0.0 azure-mgmt-rdbms==8.1.0b4 -azure-mgmt-recoveryservices==0.4.0 +azure-mgmt-recoveryservices==1.0.0 azure-mgmt-recoveryservicesbackup==0.11.0 azure-mgmt-redhatopenshift==0.1.0 azure-mgmt-redis==7.0.0rc1 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 63aca6d45da..feb3d6e10a1 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -65,7 +65,7 @@ azure-mgmt-network==19.0.0 azure-mgmt-policyinsights==0.5.0 azure-mgmt-privatedns==1.0.0 azure-mgmt-rdbms==8.1.0b4 -azure-mgmt-recoveryservices==0.4.0 +azure-mgmt-recoveryservices==1.0.0 azure-mgmt-recoveryservicesbackup==0.11.0 azure-mgmt-redhatopenshift==0.1.0 azure-mgmt-redis==7.0.0rc1 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 8e2f869da01..1afe4923f23 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -109,7 +109,7 @@ 'azure-mgmt-privatedns~=1.0.0', 'azure-mgmt-rdbms~=8.1.0b4', 'azure-mgmt-recoveryservicesbackup~=0.11.0', - 'azure-mgmt-recoveryservices~=0.4.0', + 'azure-mgmt-recoveryservices~=1.0.0', 'azure-mgmt-redhatopenshift==0.1.0', 'azure-mgmt-redis~=7.0.0rc1', 'azure-mgmt-relay~=0.1.0',